﻿/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline
}

audio:not([controls]) {
  display: none;
  height: 0
}

[hidden],
template {
  display: none
}

a {
  background-color: transparent
}

a:active,
a:hover {
  outline: 0
}

abbr[title] {
  border-bottom: 1px dotted
}

b,
strong {
  font-weight: bold
}

dfn {
  font-style: italic
}

h1 {
  font-size: 2em;
  margin: 0.67em 0
}

mark {
  background: #ff0;
  color: #000
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sup {
  top: -0.5em
}

sub {
  bottom: -0.25em
}

img {
  border: 0
}

svg:not(:root) {
  overflow: hidden
}

figure {
  margin: 1em 40px
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0
}

pre {
  overflow: auto
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0
}

button {
  overflow: visible
}

button,
select {
  text-transform: none
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer
}

button[disabled],
html input[disabled] {
  cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0
}

input {
  line-height: normal
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em
}

legend {
  border: 0;
  padding: 0
}

textarea {
  overflow: auto
}

optgroup {
  font-weight: bold
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

td,
th {
  padding: 0
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 4px 4px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible
}

.hamburger:hover {
  opacity: 1
}

.hamburger-box {
  width: 22px;
  height: 16px;
  display: inline-block;
  position: relative
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 22px;
  height: 2px;
  background-color: #000;
  border-radius: 0;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block
}

.hamburger-inner::before {
  top: -7px
}

.hamburger-inner::after {
  bottom: -7px
}

.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
  transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}

.hamburger--spin .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in
}

.hamburger--spin .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19)
}

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1)
}

:root {
  --vh-offset: 0px
}

.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0
}

.clearfix:after {
  content: "";
  display: table;
  clear: both
}

#media-queries:before {
  content: '("small": 600px, "small_medium": 1000px, "medium": 1200px)';
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 0;
  visibility: hidden;
  overflow: hidden
}

[data-href],
[data-lity-video] {
  cursor: pointer
}

@font-face {
  font-family: 'Wave-Brown-light';
  src: url("../fonts/brown-light.woff2") format("woff2"), url("../fonts/brown-light.woff") format("woff"), url("../fonts/brown-light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal
}

@font-face {
  font-family: 'Wave-BrownStd-Regular';
  src: url("../fonts/brownstd-regular.woff2") format("woff2"), url("../fonts/brownstd-regular.woff") format("woff"), url("../fonts/brownstd-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal
}

@font-face {
  font-family: 'Wave-BrownStd-Bold';
  src: url("../fonts/brownstd-bold.woff2") format("woff2"), url("../fonts/brownstd-bold.woff") format("woff"), url("../fonts/brownstd-bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal
}

body {
  font-family: "Wave-BrownStd-Regular", sans-serif;
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

@media (max-width: 599px) {
  body {
    font-size: 15px;
    line-height: 1.48
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  body {
    font-size: 18px;
    line-height: 1.48
  }
}

@media (min-width: 1200px) {
  body {
    line-height: 1.48
  }

  body {
    font-size: 18px
  }
}

@media screen and (min-width: 1200px) and (min-width: 1200px) {
  body {
    font-size: calc(15px + 3 * ((100vw - 1200px) / 720))
  }
}

@media screen and (min-width: 1200px) and (min-width: 1920px) {
  body {
    font-size: 21px
  }
}

body.grey-type {
  color: #777777
}

body b,
body strong {
  font-family: 'Wave-BrownStd-Bold';
  font-weight: normal
}

body i,
body em {
  font-style: normal !important
}

::-moz-selection {
  color: #000;
  background: #e6e6e6
}

::selection {
  color: #000;
  background: #e6e6e6
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Wave-BrownStd-Regular", sans-serif;
  font-weight: normal
}

a {
  color: inherit;
  text-decoration: none
}

p+p {
  margin-top: 1em
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0
}

h1 strong,
h1 b,
.h1 strong,
.h1 b,
h2 strong,
h2 b,
.h2 strong,
.h2 b,
h3 strong,
h3 b,
.h3 strong,
.h3 b,
h4 strong,
h4 b,
.h4 strong,
.h4 b,
h5 strong,
h5 b,
.h5 strong,
.h5 b,
h6 strong,
h6 b,
.h6 strong,
.h6 b {
  font-family: "Wave-BrownStd-Regular", sans-serif !important;
  font-weight: normal
}

h1,
.h1 {
  font-family: 'Wave-Brown-light', sans-serif
}

@media (max-width: 599px) {

  h1,
  .h1 {
    font-size: 35px;
    line-height: 1.25
  }
}

@media (min-width: 600px) and (max-width: 1199px) {

  h1,
  .h1 {
    font-size: 48px;
    line-height: 1.25
  }
}

@media (min-width: 1200px) {

  h1,
  .h1 {
    line-height: 1.25
  }

  h1,
  .h1 {
    font-size: 48px
  }
}

@media screen and (min-width: 1200px) and (min-width: 1200px) {

  h1,
  .h1 {
    font-size: calc(48px + 12 * ((100vw - 1200px) / 720))
  }
}

@media screen and (min-width: 1200px) and (min-width: 1920px) {

  h1,
  .h1 {
    font-size: 60px
  }
}

@media (max-width: 599px) {

  h2,
  .h2,
  h3,
  .h3 {
    font-size: 26px;
    line-height: 1.42
  }
}

@media (min-width: 600px) and (max-width: 1199px) {

  h2,
  .h2,
  h3,
  .h3 {
    font-size: 32px;
    line-height: 1.42
  }
}

@media (min-width: 1200px) {

  h2,
  .h2,
  h3,
  .h3 {
    line-height: 3.42
  }

  h2,
  .h2,
  h3,
  .h3 {
    font-size: 32px
  }
}

@media screen and (min-width: 1200px) and (min-width: 1200px) {

  h2,
  .h2,
  h3,
  .h3 {
    font-size: calc(20px + 6 * ((100vw - 1200px) / 720))
  }
}

@media screen and (min-width: 1200px) and (min-width: 1920px) {

  h2,
  .h2,
  h3,
  .h3 {
    font-size: 38px
  }
}

@media (max-width: 599px) {

  h4,
  .h4 {
    font-size: 21px;
    line-height: 1.42
  }
}

@media (min-width: 600px) and (max-width: 1199px) {

  h4,
  .h4 {
    font-size: 24px;
    line-height: 1.42
  }
}

@media (min-width: 1200px) {

  h4,
  .h4 {
    line-height: 1.42
  }

  h4,
  .h4 {
    font-size: 24px
  }
}

@media screen and (min-width: 1200px) and (min-width: 1200px) {

  h4,
  .h4 {
    font-size: calc(24px + 6 * ((100vw - 1200px) / 720))
  }
}

@media screen and (min-width: 1200px) and (min-width: 1920px) {

  h4,
  .h4 {
    font-size: 30px
  }
}

@media (max-width: 599px) {
  .nice-type p {
    margin: 1.48em 0
  }
  .nice-type p img{
      width: 100%;
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .nice-type p {
    margin: 1.3em 0
  }
  .nice-type p img{
      width: 100%;
  }
}

@media (min-width: 1200px) {
  .nice-type p {
    margin: 1em 0
  }
}

.nice-type p:first-child {
  margin-top: 0
}

.nice-type p:last-child {
  margin-bottom: 0
}

@media (max-width: 599px) {

  .nice-type ol,
  .nice-type ul {
    margin: 1.48em 0
  }
}

@media (min-width: 600px) and (max-width: 1199px) {

  .nice-type ol,
  .nice-type ul {
    margin: 1.3em 0
  }
}

@media (min-width: 1200px) {

  .nice-type ol,
  .nice-type ul {
    margin: 1.48em 0
  }
}

.nice-type li {
  position: relative
}

@media (max-width: 599px) {
  .nice-type li {
    margin: 0.45em 0
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .nice-type li {
    margin: 0.45em 0
  }
}

@media (min-width: 1200px) {
  .nice-type li {
    margin: 0.45em 0
  }
}

.nice-type li:first-child {
  margin-top: 0
}

.nice-type li:last-child {
  margin-bottom: 0
}

.nice-type li:before {
  content: '';
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0.7em;
  left: -3.5em;
  background: currentColor;
  border-radius: 20px
}

.nice-type ul,
.nice-type ol {
  padding: 0;
  list-style: none;
  padding-left: 1.75em
}

.nice-type ul li:before,
.nice-type ol li:before {
  top: 0.5em;
  left: -1.75em
}

@media (max-width: 599px) {
  .nice-type h2+p {
    margin-top: 0.95em
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .nice-type h2+p {
    margin-top: 1.55em
  }
}

@media (min-width: 1200px) {
  .nice-type h2+p {
    margin-top: 1em
  }
}

.nice-type p+h2,
.nice-type p+h3,
.nice-type p+h4,
.nice-type p+h5,
.nice-type p+h6 {
  margin-top: 1.75em
}

.nice-type ul+h2,
.nice-type ul+h3,
.nice-type ul+h4,
.nice-type ul+h5,
.nice-type ul+h6,
.nice-type ol+h2,
.nice-type ol+h3,
.nice-type ol+h4,
.nice-type ol+h5,
.nice-type ol+h6 {
  margin-top: 1.75em
}

@media (max-width: 599px) {
  .nice-type .social-icons {
    margin-top: 3.25em;
    margin-bottom: 1em
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .nice-type .social-icons {
    margin-top: 3.5em;
    margin-bottom: 1em
  }
}

@media (min-width: 1200px) {
  .nice-type .social-icons {
    margin-top: 1.6em;
    margin-bottom: 1em
  }
}

@media (max-width: 599px) {
  .nice-type .minitable tr td {
    padding-right: 26px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .nice-type .minitable tr td {
    padding-right: 40px
  }
}

@media (min-width: 1200px) {
  .nice-type .minitable tr td {
    padding-right: 45px
  }
}

.nice-type .minitable tr td:last-child {
  padding-right: 0
}

.nice-type>*:first-child {
  margin-top: 0
}

.nice-type>*:last-child {
  margin-bottom: 0
}

.nice-type .links {
  margin: 1.55em 0 0 0;
  padding: 0;
  list-style: none
}

.nice-type .links li:before {
  display: none
}

.small-caps,
.small-caps-link,
.about-biz .nice-type a {
  letter-spacing: 0.1em
}

@media (max-width: 599px) {

  .small-caps,
  .small-caps-link,
  .about-biz .nice-type a {
    font-size: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {

  .small-caps,
  .small-caps-link,
  .about-biz .nice-type a {
    font-size: 15px
  }
}

@media (min-width: 1200px) {

  .small-caps,
  .small-caps-link,
  .about-biz .nice-type a {
    font-size: 15px
  }
}

.small-caps-link,
.about-biz .nice-type a {
  color: #00A2FF
}

button.small-caps-link {
  background: 0;
  border: 0;
  padding: 0
}

.generic-form .required {
  color: #00A2FF
}

.generic-form input[type="text"],
.generic-form input[type="email"],
.generic-form textarea {
  font-weight: inherit;
  line-height: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid #969696;
  -webkit-appearance: none
}

.generic-form input[type="text"]:focus,
.generic-form input[type="email"]:focus,
.generic-form textarea:focus {
  outline: 0;
  border-color: #494949
}

.generic-form textarea {
  resize: vertical;
  border-width: 1px;
  border-style: solid;
  border-color: #969696;
  padding: 10px
}

@media (max-width: 599px) {
  .generic-form textarea {
    min-height: 150px;
    height: 325px;
    max-height: 90vh
  }
}

@media (min-width: 600px) {
  .generic-form textarea {
    min-height: 150px;
    height: 405px;
    max-height: 600px
  }
}

.generic-form-submit-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

@media (max-width: 599px) {
  .generic-form-submit-box {
    margin-top: 2px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .generic-form-submit-box {
    margin-top: -45px
  }
}

@media (min-width: 1200px) {
  .generic-form-submit-box {
    margin-top: -7px
  }
}

@media (max-width: 599px) {
  body {
    padding-top: 57px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  body {
    padding-top: 65px
  }
}

@media (min-width: 1200px) {
  body {
    padding-top: 90px
  }
}

.site-header {
  background: #FCFCFC;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: background 0.5s ease 0.01s, top 0.3s ease;
  transition: background 0.5s ease 0.01s, top 0.3s ease
}

.site-header.headroom--unpinned {
  top: -90px
}

html[data-nav-state="open"] .site-header {
  top: 0
}

@media (max-width: 1199px) {
  .site-header.padded {
    padding-left: 0;
    padding-right: 0
  }

  .site-header .grid {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding-left: 22px;
    padding-right: 22px
  }
}

.site-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

@media (max-width: 599px) {
  .site-header-inner {
    height: 57px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .site-header-inner {
    height: 65px
  }
}

@media (min-width: 1200px) {
  .site-header-inner {
    width: calc(100% - 80px);
    float: left;
    margin-left: 40px;
    height: 90px
  }
}

.site-header-logo {
  display: block;
  position: relative
}

.site-header-logo svg {
  -webkit-transition: fill 0.5s ease;
  transition: fill 0.5s ease;
  fill: #222
}

.site-header-nav-burger {
  display: block;
  width: 32px;
  height: 26px;
  padding: 5px;
  margin-right: -5px
}

html[data-nav-state="open"] .site-header-nav-burger .hamburger-inner,
html[data-nav-state="open"] .site-header-nav-burger .hamburger-inner::before,
html[data-nav-state="open"] .site-header-nav-burger .hamburger-inner::after {
  background: #FCFCFC
}

.site-header-nav-burger .hamburger-box {
  display: block
}

.site-mobile-nav-outer {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 0;
  height: 100vh;
  -webkit-transition: width 0.01s ease 0.51s;
  transition: width 0.01s ease 0.51s
}

.site-mobile-nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #232323;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease
}

.site-mobile-nav .inner {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

body.use-ios-offset .site-mobile-nav .inner {
  min-height: calc(100vh - var(--vh-offset))
}

.site-mobile-nav ul {
  margin: 0;
  padding: 0
}

.site-mobile-nav li {
  list-style: none
}

.site-mobile-nav a {
  display: block;
  color: #FCFCFC;
  letter-spacing: 0.1em;
  text-transform: uppercase
}

.site-mobile-nav p {
  margin: 0
}

.site-mobile-nav p a {
  display: inline-block;
  color: #B7B7B7
}

.site-mobile-nav p a:first-child {
  margin-left: 0
}

@media (max-width: 599px) {
  .site-mobile-nav .inner {
    padding: 97px 31px 40px 31px
  }

  .site-mobile-nav ul ul {
    margin-left: 30px
  }

  .site-mobile-nav a {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px
  }

  .site-mobile-nav p a {
    font-size: 14px;
    margin-left: 35px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .site-mobile-nav .inner {
    padding: 113px 41px 40px 41px
  }

  .site-mobile-nav ul ul {
    margin-left: 48px
  }

  .site-mobile-nav a {
    font-size: 23px;
    padding-top: 16px;
    padding-bottom: 16px
  }

  .site-mobile-nav p a {
    font-size: 23px;
    margin-left: 46px
  }
}

html[data-nav-state="open"] .site-header {
  background: #232323
}

html[data-nav-state="open"] .site-header-logo svg {
  fill: #FCFCFC
}

html[data-nav-state="open"] .site-mobile-nav-outer {
  width: 100vw;
  -webkit-transition: width 0.01s ease;
  transition: width 0.01s ease
}

html[data-nav-state="open"] .site-mobile-nav {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease 0.01s;
  transition: opacity 0.5s ease 0.01s
}

@media (max-width: 599px) {
  .site-header-logo {
    width: 150px;
    height: 27px
  }

  .site-header-logo svg {
    width: 150px;
    height: 27px
  }

  .site-header-nav {
    display: none
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .site-header-logo {
    width: 172px;
    height: 31px
  }

  .site-header-logo svg {
    width: 172px;
    height: 31px
  }

  .site-header-nav {
    display: none
  }
}

@media (min-width: 1200px) {
  .site-header-logo {
    width: 223px;
    height: 40px
  }

  .site-header-logo svg {
    width: 223px;
    height: 40px
  }

  .site-mobile-nav,
  .site-header-nav-burger {
    display: none
  }

  .site-header-nav ul {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }

  .site-header-nav>ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }

  .site-header-nav>ul>li {
    margin-left: 41px
  }

  .site-header-nav>ul>li:first-child {
    margin-left: 0
  }

  .site-header-nav>ul>li>a {
    padding-top: 20px;
    padding-bottom: 20px
  }

  .site-header-nav li {
    list-style: none;
    position: relative
  }

  .site-header-nav a {
    display: block;
    text-transform: uppercase;
    font-size: 15px;
    color: #222;
    opacity: 0.5;
    -webkit-transition: color 0.15s ease, opacity 0.15s ease;
    transition: color 0.15s ease, opacity 0.15s ease;
    letter-spacing: 0.1em;
    white-space: nowrap
  }

  .site-header-nav a:hover {
    opacity: 1
  }

  .site-header-nav li.current_page_parent>a,
  .site-header-nav li.current-menu-item>a,
  .site-header-nav li.current_page_item>a {
    color: #00A2FF;
    opacity: 1
  }

  .site-header-nav li.menu-item-has-children {
    position: relative
  }

  .site-header-nav li.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0) scale(1);
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease
  }

  .site-header-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-10px) scale(0.95);
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    background: #494949;
    padding: 30px 15px;
    text-align: center;
    -webkit-transition: opacity 0.6s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.6s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.6s ease, transform 0.4s ease;
    transition: opacity 0.6s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
    opacity: 0;
    pointer-events: none
  }

  .site-header-nav .sub-menu li {
    display: block;
    margin-top: 0.8em
  }

  .site-header-nav .sub-menu li:first-child {
    margin-top: 0
  }

  .site-header-nav .sub-menu a {
    color: #FCFCFC
  }
}

.site-footer {
  background: #232323;
  color: #FCFCFC
}

@media (max-width: 599px) {
  .site-footer {
    padding-top: 36px;
    padding-bottom: 36px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .site-footer {
    padding-top: 54px;
    padding-bottom: 84px
  }
}

@media (min-width: 1200px) {
  .site-footer {
    padding-top: 30px;
    padding-bottom: 30px
  }
}

.site-footer .grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.site-footer-nav {
  margin: 0;
  padding: 0;
  list-style: none
}

.site-footer-nav li:first-child {
  margin-top: 0
}

@media (max-width: 599px) {
  .site-footer-nav {
    width: calc(50% - 18px);
    float: left;
    margin-left: 12px
  }

  .site-footer-nav.site-footer-nav-links {
    /*display: none*/
  }

  .site-footer-nav li {
    margin-top: 2em
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .site-footer-nav {
    width: calc(25% - 25px);
    float: left;
    margin-left: 20px
  }

  .site-footer-nav li {
    margin-top: 1.2em
  }
}

@media (min-width: 1200px) {
  .site-footer-nav {
    width: calc(16.66667% - 46.66667px);
    float: left;
    margin-left: 40px
  }

  .site-footer-nav li {
    margin-top: 1.2em
  }
}

.site-footer-social-legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

@media (max-width: 599px) {
  .site-footer-social-legal {
    width: calc(50% - 18px);
    float: left;
    margin-left: 12px
  }
  
  .site-footer-social-legal div{
      width: 80px !important;
      /*text-align: right !important;*/
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .site-footer-social-legal {
    width: calc(50% - 30px);
    float: left;
    margin-left: 20px
  }
}

@media (min-width: 1200px) {
  .site-footer-social-legal {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px;
    margin-left: calc(16.66667% - 46.66667px + 80px)
  }
}

.site-footer-social a {
  margin-left: 35px
}

.site-footer-social a:first-child {
  margin-left: 0
}

.site-footer-social svg {
  width: 20px;
  height: 20px;
  fill: #FCFCFC
}

.site-footer-legal {
  color: #969696
}

@media (max-width: 599px) {
  .site-footer-legal {
    font-size: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .site-footer-legal {
    font-size: 14px
  }
}

@media (min-width: 1200px) {
  .site-footer-legal {
    font-size: 14px
  }
}

.dots {
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%
}

@media (max-width: 599px) {
  .dots {
    width: 375px;
    height: 282px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .dots {
    width: 508px;
    height: 381px
  }
}

@media (min-width: 1200px) {
  .dots {
    width: 940px;
    height: 706px
  }
}

.dots.top-left {
  top: 0;
  left: 0;
  background-image: url("../images/dots-top-left-smaller.png");
  background-position: top left
}

.dots.top-right {
  top: 0;
  right: 0;
  background-image: url("../images/dots-top-right-smaller.png");
  background-position: top right
}

.dots.bottom-left {
  bottom: 0;
  left: 0;
  background-image: url("../images/dots-bottom-left-smaller.png");
  background-position: top left
}

.dots.bottom-right {
  bottom: 0;
  right: 0;
  background-image: url("../images/dots-bottom-right-smaller.png");
  background-position: bottom right
}

@media (max-width: 599px) {
  .page-header {
    padding-top: 47px
  }

  .page-header.with-bottom-padding {
    padding-bottom: 59px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .page-header {
    padding-top: 115px
  }

  .page-header.with-bottom-padding {
    padding-bottom: 78px
  }
}

@media (min-width: 1200px) {
  .page-header {
    padding-top: 77px
  }

  .page-header.with-bottom-padding {
    padding-bottom: 83px
  }
}

@media (max-width: 599px) {
  .page-header-title {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .page-header-title h1 {
    margin-bottom: 0.55em
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .page-header-title {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px
  }

  .page-header-title h1 {
    margin-bottom: 1.15em
  }
}

@media (min-width: 1200px) {
  .page-header-title {
    width: calc(100% - 80px);
    float: left;
    margin-left: 40px
  }

  .page-header-title h1 {
    margin-bottom: 0.45em
  }
}

@media (max-width: 599px) {
  .page-header-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .page-header-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }
}

@media (min-width: 1200px) {
  .page-header-text {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px
  }
}

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline
}

.social-icons a {
  display: inline-block
}

@media (max-width: 599px) {
  .social-icons a {
    margin-left: 40px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .social-icons a {
    margin-left: 44px
  }
}

@media (min-width: 1200px) {
  .social-icons a {
    margin-left: 50px
  }
}

.social-icons a:first-child {
  margin-left: 0
}

.social-icons svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: #FCFCFC
}

@media (max-width: 599px) {
  .social-icons svg[data-icon="twitter"] {
    width: 25px;
    height: 20px
  }

  .social-icons svg[data-icon="linkedin"] {
    width: 21px;
    height: 20px
  }

  .social-icons svg[data-icon="facebook"] {
    width: 10px;
    height: 21px
  }

  .social-icons svg[data-icon="youtube"] {
    width: 27px;
    height: 19px
  }

  .social-icons svg[data-icon="vimeo"] {
    width: 20px;
    height: 20px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .social-icons svg[data-icon="twitter"] {
    width: 28px;
    height: 23px
  }

  .social-icons svg[data-icon="linkedin"] {
    width: 24px;
    height: 23px
  }

  .social-icons svg[data-icon="facebook"] {
    width: 12px;
    height: 24px
  }

  .social-icons svg[data-icon="youtube"] {
    width: 32px;
    height: 22px
  }

  .social-icons svg[data-icon="vimeo"] {
    width: 24px;
    height: 24px
  }
}

@media (min-width: 1200px) {
  .social-icons svg[data-icon="twitter"] {
    width: 32px;
    height: 26px
  }

  .social-icons svg[data-icon="linkedin"] {
    width: 27px;
    height: 26px
  }

  .social-icons svg[data-icon="facebook"] {
    width: 13px;
    height: 27px
  }

  .social-icons svg[data-icon="youtube"] {
    width: 34px;
    height: 24px
  }

  .social-icons svg[data-icon="vimeo"] {
    width: 26px;
    height: 26px
  }
}

.grad-container {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0)
}

.grad-blur {
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: -30px;
  right: -30px;
  bottom: -30px;
  left: -30px;
  -webkit-filter: blur(15px);
  filter: blur(15px)
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .grad-blur {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      -webkit-filter: none;
      filter: none
    }

    .grad-blur:after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      -webkit-backdrop-filter: blur(15px);
      backdrop-filter: blur(15px)
    }
  }
}

@-moz-document url-prefix() {
  .grad-blur {
    filter: none
  }
}

@supports (-ms-ime-align: auto) {
  .grad-blur {
    -webkit-filter: none;
    filter: none
  }
}

.load-more-wrapper {
  text-align: center
}

.load-more-wrapper .js-load-more svg {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px
}

.load-more-wrapper .js-load-more.loading svg {
  display: block
}

.category-list a {
  display: inline-block;
  margin-right: 38px;
  color: rgba(34, 34, 34, 0.5);
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease
}

.category-list a.active,
.category-list a:hover {
  color: #222
}

.category-list a:last-child {
  margin-right: 0
}

.banner-image {
  display: block;
  position: relative;
  max-height: 100vh;
  overflow: hidden
}

.banner-image:before {
  content: '';
  display: block;
  width: 100%
}

@media (max-width: 599px) {
  .banner-image:before {
    padding-bottom: 50%
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .banner-image:before {
    padding-bottom: 50%
  }
}

@media (min-width: 1200px) {
  .banner-image:before {
    padding-bottom: 40%
  }
}

.banner-image.loaded .banner-image-inner {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0)
}

.banner-image.loaded.for-video .video-play {
  opacity: 1;
  top: 50%
}

.banner-image-inner {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center center;
  background-size: cover;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease
}

@media (max-width: 599px) {
  .video-block .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .video-block .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

@media (min-width: 1200px) {
  .video-block .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
}

.video-block-player-outer {
  display: block
}

@media (max-width: 599px) {
  .video-block-player-outer {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .video-block-player-outer {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }
}

@media (min-width: 1200px) {
  .video-block-player-outer {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }
}

.video-block-player {
  display: block;
  position: relative
}

@media (max-width: 599px) {
  .video-block-player {
    width: 100%;
    width: calc(100% + 24px);
    margin-left: -24px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .video-block-player {
    width: 100%;
    width: calc(100% + 52px);
    margin-left: -52px
  }
}

@media (min-width: 1200px) {
  .video-block-player {
    width: calc(50vw - 20px);
    -ms-flex-negative: 0;
    flex-shrink: 0
  }
}

.video-block-player:before {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 56.25%
}

.video-block-player .video-block-player-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center
}

.video-block-player .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  fill: #FCFCFC
}

@media (max-width: 599px) {
  .video-block-player .video-play {
    width: 48px;
    height: 48px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .video-block-player .video-play {
    width: 54px;
    height: 54px
  }
}

@media (min-width: 1200px) {
  .video-block-player .video-play {
    width: 80px;
    height: 80px
  }
}

@media (max-width: 599px) {
  .video-block-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .video-block-text .nice-type {
    margin-top: 15px;
    margin-bottom: 29px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .video-block-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .video-block-text .nice-type {
    margin-top: 19px;
    margin-bottom: 49px
  }
}

@media (min-width: 1200px) {
  .video-block-text {
    width: calc(41.66667% - 56.66667px);
    float: left;
    margin-left: 40px;
    margin-left: calc(8.33333% - 43.33333px + 80px)
  }

  .video-block-text .nice-type {
    margin-top: 19px
  }
}

/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease
}

.lity.lity-opened {
  opacity: 1
}

.lity.lity-closed {
  opacity: 0
}

.lity * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important
}

.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease
}

.lity-loading .lity-loader {
  opacity: 1
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  transform: scale(0.8)
}

.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6)
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 20px;
  top: 20px;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none
}

.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0
}

.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
  max-width: 90vw;
  max-height: 90vh
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000
}

.lity-hide {
  display: none
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

html,
body {
  max-width: 100%
}

html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  background: lightgreen !important
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit
}

body {
  background: #FCFCFC;
  overflow-anchor: none
}

.wrapper {
  width: 100%;
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
}

.padded {
  width: 100%
}

@media (max-width: 599px) {
  .padded {
    padding-left: 24px;
    padding-right: 24px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .padded {
    padding-left: 52px;
    padding-right: 52px
  }
}

@media (min-width: 1200px) {
  .padded {
    padding-left: 6.5vw;
    padding-right: 6.5vw
  }
}

.padded-wrapper {
  width: 100%;
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto
}

@media (max-width: 599px) {
  .padded-wrapper {
    padding-left: 24px;
    padding-right: 24px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .padded-wrapper {
    padding-left: 52px;
    padding-right: 52px
  }
}

@media (min-width: 1200px) {
  .padded-wrapper {
    padding-left: 6.5vw;
    padding-right: 6.5vw
  }
}

@media (max-width: 599px) {
  .grid {
    margin-left: -12px;
    margin-right: -12px;
    width: calc(100% + 24px)
  }

  .grid::after {
    clear: both;
    content: "";
    display: block
  }

  body.grid-view .grid {
    background-image: repeating-linear-gradient(to right, transparent, transparent 12px, rgba(0, 128, 0, 0.1) 12px, rgba(0, 128, 0, 0.1) calc(25% - 15px + 12px))
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .grid {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px)
  }

  .grid::after {
    clear: both;
    content: "";
    display: block
  }

  body.grid-view .grid {
    background-image: repeating-linear-gradient(to right, transparent, transparent 20px, rgba(0, 0, 255, 0.1) 20px, rgba(0, 0, 255, 0.1) calc(8.33333% - 21.66667px + 20px))
  }
}

@media (min-width: 1200px) {
  .grid {
    margin-left: -40px;
    margin-right: -40px;
    width: calc(100% + 80px)
  }

  .grid::after {
    clear: both;
    content: "";
    display: block
  }

  body.grid-view .grid {
    background-image: repeating-linear-gradient(to right, transparent, transparent 40px, rgba(255, 0, 0, 0.1) 40px, rgba(255, 0, 0, 0.1) calc(8.33333% - 43.33333px + 40px))
  }
}

.two-cols ul.links {
  padding: 0;
  list-style: none
}

.two-cols ul.links li:first-child {
  margin-top: 0
}

.two-cols ul.links li:before {
  display: none
}

@media (max-width: 599px) {
  .two-cols ul.links {
    margin: 2em 0 2em 0
  }

  .two-cols ul.links li {
    margin-top: 1.8em
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .two-cols ul.links {
    margin: 2.95em 0 2em 0
  }

  .two-cols ul.links li {
    margin-top: 1.75em
  }
}

@media (min-width: 1200px) {
  .two-cols ul.links {
    margin: 2.55em 0 0 0
  }

  .two-cols ul.links li {
    margin-top: 1.25em
  }
}

@media (max-width: 599px) {
  .two-cols-row .two-cols-row-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .two-cols-row .two-cols-row-image {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    margin-top: 49px
  }

  .two-cols-row .two-cols-row-image-inner {
    width: calc(100% + 24px)
  }

  .two-cols-row+.two-cols-row {
    margin-top: 49px
  }

  .two-cols-row.image-left .two-cols-row-image-inner {
    margin-left: -24px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .two-cols-row .two-cols-row-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }

  .two-cols-row .two-cols-row-image {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
    margin-top: 59px
  }

  .two-cols-row .two-cols-row-image-inner {
    width: calc(100% + 52px)
  }

  .two-cols-row+.two-cols-row {
    margin-top: 52px
  }

  .two-cols-row.image-left .two-cols-row-image-inner {
    margin-left: -52px
  }

  .two-cols-row.image-right .two-cols-row-image {
    margin-left: calc(25% - 25px + 40px)
  }
}

@media (min-width: 1200px) {
  .two-cols-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }

  .two-cols-row .two-cols-row-text {
    width: calc(41.66667% - 56.66667px);
    float: left;
    margin-left: 40px
  }

  .two-cols-row .two-cols-row-image {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px
  }

  .two-cols-row .two-cols-row-image.size-normal .two-cols-row-image-inner {
    width: 100%
  }

  body.page-id-1518 .two-cols-row .two-cols-row-image.size-normal .two-cols-row-image-inner,
  body.page-id-1456 .two-cols-row .two-cols-row-image.size-normal .two-cols-row-image-inner,
  body.page-id-1453 .two-cols-row .two-cols-row-image.size-normal .two-cols-row-image-inner {
    margin-top: -60px;
    margin-bottom: -60px
  }

  .two-cols-row .two-cols-row-image-inner {
    width: calc(50vw - 20px)
  }

  .two-cols-row+.two-cols-row {
    margin-top: 100px
  }

  .two-cols-row.image-left .two-cols-row-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: calc(8.33333% - 43.33333px + 80px)
  }

  .two-cols-row.image-left .two-cols-row-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }

  .two-cols-row.image-left .two-cols-row-image-inner {
    -ms-flex-negative: 0;
    flex-shrink: 0
  }

  .two-cols-row.image-right .two-cols-row-image {
    margin-left: calc(8.33333% - 43.33333px + 80px)
  }
}

.two-cols-row-image.size-normal .two-cols-row-image-inner {
  background-size: contain;
  background-repeat: no-repeat
}

.two-cols-row-image-inner {
  background-size: cover;
  background-position: center center
}

.two-cols-row-image-inner:before {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 56.25%
}

body.home {
  padding-top: 0
}

body.home .site-header {
  background: transparent
}

body.home .site-header:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0))
}

body.home .site-header.headroom--top:before {
  opacity: 1
}

body.home .site-header.headroom--top .site-header-logo svg {
  fill: #FCFCFC
}

body.home .site-header.headroom--top .site-header-nav a {
  color: #FCFCFC;
  opacity: 1
}

html[data-nav-state="closed"] body.home .site-header.headroom--top .hamburger-inner,
html[data-nav-state="closed"] body.home .site-header.headroom--top .hamburger-inner::before,
html[data-nav-state="closed"] body.home .site-header.headroom--top .hamburger-inner::after {
  background: #FCFCFC
}

html[data-nav-state="closed"] body.home .site-header.headroom--not-top {
  background: #FCFCFC
}

.home-header-wrapper {
  background: #232323;
  max-height: 100vh;
  position: relative;
  overflow: hidden
}

body.use-ios-offset .home-header-wrapper {
  max-height: calc(100vh - var(--vh-offset))
}

@media (max-width: 599px) {
  .home-header-wrapper {
    height: 86vw
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .home-header-wrapper {
    height: 86vw
  }
}

@media (min-width: 1200px) {
  .home-header-wrapper {
    height: 816px;
    height: calc(100vh - 283px);
    /*height: calc(100vh - 69px - 2.5em - -2.05em)*/
  }

  .home-header-wrapper {
    font-size: 48px
  }
}

@media screen and (min-width: 1200px) and (min-width: 1200px) {
  .home-header-wrapper {
    font-size: calc(48px + 12 * ((100vw - 1200px) / 660))
  }
}

@media screen and (min-width: 1200px) and (min-width: 1920px) {
  .home-header-wrapper {
    font-size: 60px
  }
}

.home-header-wrapper .home-header-placeholder {
  /*height: 56.25vw;*/
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  z-index: 5
}

.home-header-wrapper iframe {
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  width: 177.77777778vh;
  z-index: 10
}

.home-header-wrapper .home-header-iframe-cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20
}

.home-header-intro-wrapper {
  position: relative;
  overflow: hidden
}

@media (max-width: 599px) {
  .home-header-intro-wrapper {
    padding-top: 36px;
    padding-bottom: 53px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .home-header-intro-wrapper {
    padding-top: 44px;
    padding-bottom: 58px
  }
}

@media (min-width: 1200px) {
  .home-header-intro-wrapper {
    padding-top: 62px;
    padding-bottom: 82px
  }
}

.home-header-intro-wrapper .wrapper {
  position: relative
}

.home-header-intro-wrapper .page-header-title {
  clear: both
}

@media (max-width: 599px) {
  .home-header-intro-wrapper .page-header-title {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    padding-right: 5%
  }

  .home-header-intro-wrapper .page-header-title h2 {
    margin-bottom: 0
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .home-header-intro-wrapper .page-header-title {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px
  }

  .home-header-intro-wrapper .page-header-title h2 {
    margin-bottom: 0;
    width: 65%
  }
}

@media (min-width: 1200px) {
  .home-header-intro-wrapper .page-header-title {
    width: calc(100% - 80px);
    float: left;
//font-size:24px;
    margin-left: 40px
  }

  .home-header-intro-wrapper .page-header-title h2 {
    min-width: 540px;
    margin-bottom: 0;
font-size:24px;
    width: 50%
  }
}

.home-header-intro-wrapper .page-header-text {
  clear: both
}

@media (max-width: 599px) {
  .home-header-intro-wrapper .page-header-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .home-header-intro-wrapper .page-header-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }
}

@media (min-width: 1200px) {
  .home-header-intro-wrapper .page-header-text {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px
  }
}

.scroll-down {
  position: absolute;
  bottom: 34px;
  left: 50%;
  width: 50px;
  height: 26px;
  margin-left: -25px;
  z-index: 20;
  cursor: pointer
}

.scroll-down svg {
  display: block;
  width: 50px;
  height: 26px;
  fill: #FCFCFC
}

.home-hero {
  color: #FCFCFC
}

.home-hero .grad-blur {
  background-image: url("../images/grad-2.png");
  z-index: 10
}

@-moz-document url-prefix() {
  .home-hero .grad-blur {
    background-image: url("../images/grad-2-large.png")
  }
}

@supports (-ms-ime-align: auto) {
  .home-hero .grad-blur {
    background-image: url("../images/grad-2-large.png")
  }
}

.home-hero .grid {
  position: relative;
  z-index: 20
}

@media (min-width: 1200px) {
  .home-hero .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
align-items: center;
  }
}

@media (max-width: 599px) {
  .home-hero {
    padding-top: 37px;
    padding-bottom: 40px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .home-hero {
    padding-top: 48px;
    padding-bottom: 58px
  }
}

@media (min-width: 1200px) {
  .home-hero {
    padding-top: 87px;
    padding-bottom: 67px;
height: 600px;
  }
}

.home-hero-text {
  position: relative;
  z-index: 30
}

@media (max-width: 599px) {
  .home-hero-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .home-hero-text .nice-type {
    margin-top: 20px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .home-hero-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }

  .home-hero-text h3 {
    padding-right: 5%
  }

  .home-hero-text .nice-type {
    margin-top: 27px
  }
}

@media (min-width: 1200px) {
  .home-hero-text {
    width: calc(41.66667% - 56.66667px);
    float: left;
    margin-left: 40px;
    margin-left: calc(8.33333% - 43.33333px + 80px);
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .home-hero-text .nice-type {
    margin-top: 29px
  }
}

.home-hero-image {
  position: relative;
  z-index: 20
}

@media (max-width: 599px) {
  .home-hero-image {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    margin-top: 47px;
    margin-bottom: -153px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }

  .home-hero-image img {
    width: calc(100% + 70%);
    margin-left: 2px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .home-hero-image {
    width: calc(91.66667% - 38.33333px);
    float: left;
    margin-left: 20px;
    margin-left: calc(8.33333% - 21.66667px + 40px);
    margin-top: 30px;
    padding-left: 10px;
    margin-bottom: -245px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }

  .home-hero-image img {
    width: calc(100% + 45%);
    margin-left: -10px
  }
}

@media (min-width: 1200px) {
  .home-hero-image {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }

  .home-hero-image img {
height:420px;
    /*width: calc(100% + 89%);*/
    /*margin-top: 21px;*/
    /*margin-top: calc(21px + 40px);*/
    margin-right: 36px;21.5% - 40px)
  }
}

.home-icons-wrapper {
  background: #EFEFF1;
  position: relative;
  overflow: hidden
}

@media (min-width: 1200px) {
  .home-icons-wrapper .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}

@media (max-width: 599px) {
  .home-icons-item {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    padding-top: 35px;
    padding-bottom: 49px
  }

  .home-icons-item:nth-child(n+2) {
    position: relative;
    padding-top: 44px
  }

  .home-icons-item:nth-child(n+2):before {
    content: '';
    display: block;
    width: 200vw;
    position: absolute;
    top: 0;
    left: -50vw;
    height: 3px;
    background: #FCFCFC
  }

  .home-icons-item p {
    margin-top: 1.15em;
    margin-bottom: 2.2em
  }

  .home-icons-item svg {
    display: block;
    margin-left: auto;
    opacity: 0.25
  }

  .home-icons-item svg[data-icon="home_icon_1"] {
    width: calc(81px + 10vw);
    height: calc(73px + 10vw)
  }

  .home-icons-item svg[data-icon="home_icon_2"] {
    width: calc(65px + 10vw);
    height: calc(60px + 10vw)
  }

  .home-icons-item svg[data-icon="home_icon_3"] {
    width: calc(84px + 10vw);
    height: calc(60px + 10vw)
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .home-icons-item {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
    padding-top: 38px;
    padding-bottom: 49px
  }

  .home-icons-item:nth-child(n+2) {
    position: relative;
    padding-top: 49px
  }

  .home-icons-item:nth-child(n+2):before {
    content: '';
    display: block;
    width: 200vw;
    position: absolute;
    top: 0;
    left: -50vw;
    height: 3px;
    background: #FCFCFC
  }

  .home-icons-item p {
    margin-top: 1.15em;
    margin-bottom: 2.6em
  }

  .home-icons-item svg {
    display: block;
    margin-left: auto;
    opacity: 0.25
  }

  .home-icons-item svg[data-icon="home_icon_1"] {
    width: 203px;
    height: 182px
  }

  .home-icons-item svg[data-icon="home_icon_2"] {
    width: 162px;
    height: 150px
  }

  .home-icons-item svg[data-icon="home_icon_3"] {
    width: 210px;
    height: 150px
  }
}

@media (min-width: 1200px) {
  .home-icons-item {
    width: calc(33.33333% - 53.33333px);
    float: left;
    margin-left: 40px;
    padding-top: 67px;
    padding-bottom: 49px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }

  .home-icons-item:nth-child(n+2) {
    position: relative
  }

  .home-icons-item:nth-child(n+2):before {
    content: '';
    width: 2px;
    position: absolute;
    top: 0;
    left: -21px;
    bottom: 0;
    background-color: #FCFCFC
  }

  .home-icons-item p {
    margin-top: 1.15em;
    margin-bottom: 1.9em;
    max-width: 540px
  }

  .home-icons-item svg {
    display: block;
    margin-left: auto;
    opacity: 0.25;
    margin-top: auto
  }

  .home-icons-item svg[data-icon="home_icon_1"] {
    width: 203px;
    height: 182px
  }

  .home-icons-item svg[data-icon="home_icon_2"] {
    width: 162px;
    height: 150px;
    margin-bottom: 16px
  }

  .home-icons-item svg[data-icon="home_icon_3"] {
    width: 210px;
    height: 150px;
    margin-bottom: 20px
  }
}

.home-news-wrapper {
  position: relative
}

.home-news-wrapper .wrapper {
  position: relative
}

@media (max-width: 599px) {
  .home-news-wrapper {
    padding-top: 58px;
    padding-bottom: 80px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .home-news-wrapper {
    padding-top: 49px;
    padding-bottom: 58px
  }
}

@media (min-width: 1200px) {
  .home-news-wrapper {
    padding-top: 77px;
    padding-bottom: 100px
  }
}

@media (max-width: 599px) {
  .home-news-wrapper-header {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    padding-bottom: 45px
  }

  .home-news-wrapper-header h3 {
    margin-bottom: 7px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .home-news-wrapper-header {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
    padding-bottom: 47px
  }

  .home-news-wrapper-header h3 {
    margin-bottom: 28px
  }
}

@media (min-width: 1200px) {
  .home-news-wrapper-header {
    width: calc(41.66667% - 56.66667px);
    float: left;
    margin-left: 40px;
    padding-bottom: 64px
  }

  .home-news-wrapper-header h3 {
    margin-bottom: 26px
  }
}

.about-hero {
  color: #FCFCFC
}

.about-hero .grad-blur {
  background-image: url("../images/grad-5.png");
  z-index: 10
}

@-moz-document url-prefix() {
  .about-hero .grad-blur {
    background-image: url("../images/grad-5-large.png")
  }
}

@supports (-ms-ime-align: auto) {
  .about-hero .grad-blur {
    background-image: url("../images/grad-5-large.png")
  }
}

.about-hero .grid {
  position: relative;
  z-index: 20
}

@media (min-width: 1200px) {
  .about-hero .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}

@media (max-width: 599px) {
  .about-hero {
    padding-top: 48px;
    padding-bottom: 40px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .about-hero {
    padding-top: 64px;
    padding-bottom: 58px
  }
}

@media (min-width: 1200px) {
  .about-hero {
    padding-top: 102px;
    padding-bottom: 27px
  }
}

.about-hero-text {
  position: relative;
  z-index: 30
}

@media (max-width: 599px) {
  .about-hero-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .about-hero-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }
}

@media (min-width: 1200px) {
  .about-hero-text {
    width: calc(41.66667% - 56.66667px);
    float: left;
    margin-left: 40px;
    margin-left: calc(8.33333% - 43.33333px + 80px);
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }
}

.about-hero-image {
  position: relative;
  z-index: 20
}

@media (max-width: 599px) {
  .about-hero-image {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }

  .about-hero-image img {
    width: calc(100% + 40%);
    margin-left: 10px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .about-hero-image {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
    margin-left: calc(25% - 25px + 40px);
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }

  .about-hero-image img {
    width: calc(100% + 45%);
    margin-left: -10px
  }
}

@media (min-width: 1200px) {
  .about-hero-image {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }

  .about-hero-image img {
    width: calc(100% + 36%);
    margin-top: -62px;
    margin-right: 33px
  }
}

.about-biz {
  background: #FCFCFC;
  position: relative
}

@media (max-width: 599px) {
  .about-biz {
    padding-top: 45px;
    padding-bottom: 45px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .about-biz {
    padding-top: 67px;
    padding-bottom: 69px
  }
}

@media (min-width: 1200px) {
  .about-biz {
    padding-top: 103px;
    padding-bottom: 136px
  }
}

.about-biz .wrapper {
  position: relative
}

@media (min-width: 1200px) {
  .about-biz .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
}

@media (max-width: 599px) {
  .about-biz-top-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .about-biz-top-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }
}

@media (min-width: 1200px) {
  .about-biz-top-text {
    width: calc(41.66667% - 56.66667px);
    float: left;
    margin-left: 40px
  }

  .about-biz-top-text * {
    width: calc(100% + 5px)
  }
}

.about-biz-top-image .about-biz-top-image-inner {
  background-size: cover;
  background-position: center center
}

.about-biz-top-image .about-biz-top-image-inner:before {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 56.25%
}

@media (max-width: 599px) {
  .about-biz-top-image {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    margin-top: 49px
  }

  .about-biz-top-image .about-biz-top-image-inner {
    width: calc(100% + 24px)
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .about-biz-top-image {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
    margin-left: calc(25% - 25px + 40px);
    margin-top: 59px
  }

  .about-biz-top-image .about-biz-top-image-inner {
    width: calc(100% + 52px)
  }
}

@media (min-width: 1200px) {
  .about-biz-top-image {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px;
    margin-left: calc(8.33333% - 43.33333px + 80px)
  }

  .about-biz-top-image .about-biz-top-image-inner {
    width: calc(50vw - 20px)
  }
}

@media (max-width: 599px) {
  .about-biz-bottom-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .about-biz-bottom-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }
}

@media (min-width: 1200px) {
  .about-biz-bottom-text {
    width: calc(41.66667% - 56.66667px);
    float: left;
    margin-left: 40px;
    margin-left: calc(8.33333% - 43.33333px + 80px);
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }
}

.about-biz-bottom-image .about-biz-bottom-image-inner {
  background-size: cover;
  background-position: center center
}

.about-biz-bottom-image .about-biz-bottom-image-inner:before {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 56.25%
}

@media (max-width: 599px) {
  .about-biz-bottom-image {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    margin-top: 40px
  }

  .about-biz-bottom-image .about-biz-bottom-image-inner {
    width: calc(100% + 24px);
    margin-left: -24px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .about-biz-bottom-image {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
    margin-top: 49px
  }

  .about-biz-bottom-image .about-biz-bottom-image-inner {
    width: calc(100% + 52px);
    margin-left: -52px
  }
}

@media (min-width: 1200px) {
  .about-biz-bottom-image {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }

  .about-biz-bottom-image .about-biz-bottom-image-inner {
    width: calc(50vw - 20px);
    -ms-flex-negative: 0;
    flex-shrink: 0
  }
}

@media (max-width: 599px) {
  .about-biz-bottom {
    margin-top: 38px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .about-biz-bottom {
    margin-top: 49px
  }
}

@media (min-width: 1200px) {
  .about-biz-bottom {
    margin-top: 100px
  }
}

.about-investors {
  background: #EFEFF1
}

@media (max-width: 599px) {
  .about-investors {
    padding-top: 35px;
    padding-bottom: 49px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .about-investors {
    padding-top: 73px;
    padding-bottom: 142px
  }
}

@media (min-width: 1200px) {
  .about-investors {
    padding-top: 96px;
    padding-bottom: 115px
  }
}

@media (max-width: 599px) {
  .about-investors-title {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    margin-bottom: 40px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .about-investors-title {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px
  }
}

@media (min-width: 1200px) {
  .about-investors-title {
    width: calc(100% - 80px);
    float: left;
    margin-left: 40px;
    padding-bottom: 9px
  }
}

.about-investors-item .about-investors-item-image {
  background-size: contain;
  background-position: bottom left;
  background-repeat: no-repeat;
  width: 100%
}

.about-investors-item .about-investors-item-image:before {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 60%
}
.about-investors-item .about-investors-item-image .hidden{
position: static;
  width: auto;
  height: auto;
}
@media (max-width: 599px) {
  .about-investors-item {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .about-investors-item:nth-of-type(n+2) {
    margin-top: 50px
  }

  .about-investors-item .about-investors-item-image {
    width: 50%;
    max-width: 300px
  }

  .about-investors-item .nice-type {
    margin-top: 37px;
    margin-bottom: 23px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .about-investors-item {
    width: calc(66.66667% - 33.33333px);
    float: left;
    margin-left: 20px;
    margin-left: calc(33.33333% - 26.66667px + 40px)
  }

  .about-investors-item:nth-of-type(n+2) {
    margin-top: 88px
  }

  .about-investors-item .about-investors-item-image {
    max-width: 260px
  }

  .about-investors-item .nice-type {
    margin-top: 110px;
    margin-bottom: 45px
  }
}

@media (min-width: 1200px) {
  .about-investors-item {
    width: calc(41.66667% - 56.66667px);
    float: left;
    margin-left: 40px
  }

  .about-investors-item:nth-of-type(2n+1) {
    margin-left: calc(16.66667% - 46.66667px + 80px);
    clear: both
  }

  .about-investors-item:nth-of-type(n+3) {
    margin-top: 63px
  }

  .about-investors-item .about-investors-item-image {
    max-width: 220px
  }

  .about-investors-item .nice-type {
    margin-top: 84px;
    margin-bottom: 41px
  }
}

.products-index-wrapper .grad-blur {
  background-image: url("../images/grad-4-flip.png");
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  background-size: 100% 100%
}

@-moz-document url-prefix() {
  .products-index-wrapper .grad-blur {
    background-image: url("../images/grad-4-large-flip.png")
  }
}

@supports (-ms-ime-align: auto) {
  .products-index-wrapper .grad-blur {
    background-image: url("../images/grad-4-large-flip.png")
  }
}

.products-index-wrapper .wrapper {
  position: relative;
  color: #FCFCFC
}

@media (max-width: 599px) {
  .products-index-wrapper {
    padding-top: 49px;
    padding-bottom: 71px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .products-index-wrapper {
    padding-top: 55px;
    padding-bottom: 84px
  }
}

@media (min-width: 1200px) {
  .products-index-wrapper {
    padding-top: 42px;
    padding-bottom: 75px
  }
}

@media (max-width: 599px) {
  .products-index-title {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .products-index-title p {
    margin: 0;
    padding-right: 5%
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .products-index-title {
    width: calc(66.66667% - 33.33333px);
    float: left;
    margin-left: 20px
  }

  .products-index-title p {
    margin: 0;
    padding-right: 5%
  }
}

@media (min-width: 1200px) {
  .products-index-title {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px;
    padding-right: 5%
  }
}

.products-index-items {
  clear: both
}

.products-index-item {
  clear: both
}

.products-index-item:first-child {
  margin-top: 0
}

@media (max-width: 599px) {
  .products-index-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 60px
  }

  .products-index-item .products-index-item-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .products-index-item .products-index-item-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .products-index-item img {
    width: 90%
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .products-index-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 32px
  }

  .products-index-item .products-index-item-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .products-index-item .products-index-item-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .products-index-item:nth-child(2) img {
    width: 82%
  }

  .products-index-item:nth-child(3) img {
    width: 90%
  }

  .products-index-item:nth-child(even) .products-index-item-text,
  .products-index-item:nth-child(even) .products-index-item-image {
    margin-left: calc(25% - 25px + 40px)
  }

  .products-index-item:nth-child(3) .products-index-item-image {
    padding-top: 98px
  }
}

@media (min-width: 1200px) {
  .products-index-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 117px
  }

  .products-index-item:nth-child(even) .products-index-item-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .products-index-item:nth-child(even) .products-index-item-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    left: calc(-8.33333% - 36.66667px + 40px);
    position: relative
  }

  .products-index-item:nth-child(1) {
    padding-top: 20px
  }

  .products-index-item:nth-child(3) {
    margin-top: 77px
  }

  .products-index-item:nth-child(3) .products-index-item-image img {
    width: 90%
  }

  .products-index-item:nth-child(4) {
    margin-top: 90px
  }
}

@media (max-width: 599px) {
  .products-index-item-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .products-index-item-text .nice-type {
    margin-top: 18px;
    margin-bottom: 33px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .products-index-item-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }

  .products-index-item-text .nice-type {
    margin-top: 15px;
    margin-bottom: 33px;
    width: calc(100% + 10px)
  }
}

@media (min-width: 1200px) {
  .products-index-item-text {
    width: calc(41.66667% - 56.66667px);
    float: left;
    margin-left: 40px
  }

  .products-index-item-text .nice-type {
    margin-top: 23px;
    margin-bottom: 44px
  }
}

.products-index-item-image img {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto
}

@media (max-width: 599px) {
  .products-index-item-image {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    margin-bottom: 30px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .products-index-item-image {
    width: calc(66.66667% - 33.33333px);
    float: left;
    margin-left: 20px;
    margin-bottom: 85px
  }
}

@media (min-width: 1200px) {
  .products-index-item-image {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px;
    margin-left: calc(8.33333% - 43.33333px + 80px)
  }
}

.products-related-news-wrapper {
  position: relative;
  overflow: hidden
}

.products-related-news-wrapper .wrapper {
  position: relative
}

@media (max-width: 599px) {
  .products-related-news-wrapper {
    padding-top: 50px;
    padding-bottom: 64px
  }

  .products-related-news-wrapper .news-single-related-title .small-caps-link,
  .products-related-news-wrapper .news-single-related-title .about-biz .nice-type a,
  .about-biz .nice-type .products-related-news-wrapper .news-single-related-title a {
    display: inline-block;
    margin-top: 10px
  }

  .products-related-news-wrapper .news-single-related-items {
    margin-top: 45px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .products-related-news-wrapper {
    padding-top: 58px;
    padding-bottom: 57px
  }

  .products-related-news-wrapper .news-single-related-title .small-caps-link,
  .products-related-news-wrapper .news-single-related-title .about-biz .nice-type a,
  .about-biz .nice-type .products-related-news-wrapper .news-single-related-title a {
    display: inline-block;
    margin-top: 20px
  }

  .products-related-news-wrapper .news-single-related-items {
    margin-top: 37px
  }
}

@media (min-width: 1200px) {
  .products-related-news-wrapper {
    padding-top: 100px;
    padding-bottom: 160px
  }

  .products-related-news-wrapper .news-single-related-title .small-caps-link,
  .products-related-news-wrapper .news-single-related-title .about-biz .nice-type a,
  .about-biz .nice-type .products-related-news-wrapper .news-single-related-title a {
    display: inline-block;
    margin-top: 31px
  }

  .products-related-news-wrapper .news-single-related-items {
    margin-top: 65px
  }
}

@media (max-width: 599px) {
  body.page-id-1458 .two-cols-row.grid.image-right .two-cols-row-image.size-normal {
    margin-top: 0px
  }

  body.page-id-1458 .two-cols-row.grid.image-left .two-cols-row-image.size-normal {
    margin-top: 30px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  body.page-id-1458 .two-cols-row.grid.image-right .two-cols-row-image.size-normal {
    margin-top: 0px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  body.page-id-2133 .product-rows.two-cols.padded .two-cols-row.grid.image-right .two-cols-row-image-inner {
    width: 48vw;
    margin-left: auto
  }
}

@media (max-width: 599px) {
  body.page-id-2133 .product-rows.two-cols.padded .two-cols-row.grid.image-right .two-cols-row-image-inner {
    width: 70vw;
    margin-left: auto;
    margin-right: auto
  }
}

@media (min-width: 1200px) {
  body.page-id-2133 .product-rows.two-cols.padded .two-cols-row.grid.image-right .two-cols-row-image-inner {
    width: 28vw;
    margin-left: auto;
    margin-right: auto
  }
}

.product-text-wrapper {
  position: relative;
  overflow: hidden
}

.product-text-wrapper .wrapper {
  position: relative
}

@media (max-width: 599px) {
  .product-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    padding-top: 39px;
    padding-bottom: 39px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .product-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
    padding-top: 79px;
    padding-bottom: 76px
  }
}

@media (min-width: 1200px) {
  .product-text {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px;
    padding-top: 166px;
    padding-bottom: 194px
  }
}

.product-icons-wrapper .grad-blur {
  background-image: url("../images/grad-1.png");
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  background-size: 100% 100%
}

@-moz-document url-prefix() {
  .product-icons-wrapper .grad-blur {
    background-image: url("../images/grad-1-large.png")
  }
}

@supports (-ms-ime-align: auto) {
  .product-icons-wrapper .grad-blur {
    background-image: url("../images/grad-1-large.png")
  }
}

.product-icons-wrapper .wrapper {
  position: relative
}

@media (max-width: 599px) {
  .product-icons {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    padding-top: 64px;
    padding-bottom: 121px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .product-icons {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 57px;
    padding-bottom: 55px
  }
}

@media (min-width: 1200px) {
  .product-icons {
    width: calc(100% - 80px);
    float: left;
    margin-left: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 52px;
    padding-bottom: 116px;
    padding-left: 160px;
    padding-right: 160px
  }
}

.product-icons-item {
  text-align: center
}

.product-icons-item svg {
  fill: rgba(252, 252, 252, 0.8)
}

.product-icons-item p {
  color: #FCFCFC
}

@media (max-width: 599px) {
  .product-icons-item {
    margin-top: 77px
  }

  .product-icons-item:first-child {
    margin-top: 0
  }

  .product-icons-item svg {
    width: 160px;
    height: 160px
  }

  .product-icons-item p {
    margin: 0
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .product-icons-item {
    width: 33.33%
  }

  .product-icons-item svg {
    width: 141px;
    height: 141px
  }

  .product-icons-item p {
    margin: 0;
    font-size: 19px;
    padding: 0 7%
  }
}

@media (min-width: 1200px) {
  .product-icons-item {
    width: calc(25% - 20px)
  }

  .product-icons-item svg {
    width: 241px;
    height: 241px
  }

  .product-icons-item p {
    margin: 1.4em 0 0 0
  }
}

.product-downloads-wrapper {
  position: relative;
  overflow: hidden
}

@media (max-width: 599px) {
  .product-downloads-wrapper {
    padding-top: 54px;
    padding-bottom: 58px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .product-downloads-wrapper {
    padding-top: 38px;
    padding-bottom: 57px
  }
}

@media (min-width: 1200px) {
  .product-downloads-wrapper {
    padding-top: 107px;
    padding-bottom: 122px
  }
}

.product-downloads-wrapper .wrapper {
  position: relative
}

@media (max-width: 599px) {
  .products-downloads-title {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    margin-bottom: 15px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .products-downloads-title {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
    margin-bottom: 19px
  }
}

@media (min-width: 1200px) {
  .products-downloads-title {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px;
    margin-bottom: 29px
  }
}

.products-downloads-text {
  clear: both
}

@media (max-width: 599px) {
  .products-downloads-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    margin-bottom: 40px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .products-downloads-text {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
    margin-bottom: 65px
  }
}

@media (min-width: 1200px) {
  .products-downloads-text {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px
  }
}

.products-downloads-items p {
  margin: 0
}

.products-downloads-items ul {
  margin: 1.55em 0 0 0;
  padding: 0;
  list-style: none
}

.products-downloads-items ul li {
  margin-top: 1.25em
}

.products-downloads-items ul li:first-child {
  margin-top: 0
}

@media (max-width: 599px) {
  .products-downloads-items {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .products-downloads-items {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px
  }

  .products-downloads-items ul {
    margin-top: 2.5em
  }

  .products-downloads-items ul li {
    margin-top: 1.7em
  }
}

@media (min-width: 1200px) {
  .products-downloads-items {
    width: calc(41.66667% - 56.66667px);
    float: left;
    margin-left: 40px;
    margin-left: calc(8.33333% - 43.33333px + 80px)
  }
}

.product-rows {
  background: #EFEFF1
}

@media (max-width: 599px) {
  .product-rows {
    padding-top: 23px;
    padding-bottom: 23px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .product-rows {
    padding-top: 52px;
    padding-bottom: 52px
  }
}

@media (min-width: 1200px) {
  .product-rows {
    padding-top: 100px;
    padding-bottom: 100px
  }
}

@media (max-width: 1199px) and (min-width: 600px) {

  body.page-id-1453 .careers-rows-purple .two-cols-row.grid.image-right .two-cols-row-image,
  body.page-id-1456 .careers-rows-purple .two-cols-row.grid.image-right .two-cols-row-image {
    margin-top: 19px
  }
}

body.page-id-1453 .careers-rows-purple .two-cols-row.grid.image-right .two-cols-row-image-inner:before,
body.page-id-1456 .careers-rows-purple .two-cols-row.grid.image-right .two-cols-row-image-inner:before {
  padding-bottom: 79%
}

@media (max-width: 1199px) {

  body.page-id-1453 .careers-rows-purple .two-cols-row.image-left .two-cols-row-image-inner,
  body.page-id-1456 .careers-rows-purple .two-cols-row.image-left .two-cols-row-image-inner {
    margin-left: 0;
    width: 100%
  }
}

@media (max-width: 599px) {
  body.page-id-1458 .two-cols-row.grid.image-right .two-cols-row-image.size-normal {
    padding-right: 24px
  }

  body.page-id-1458 .two-cols-row.grid.image-left .two-cols-row-image.size-normal {
    padding-left: 24px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  body.page-id-1458 .two-cols-row.grid.image-right .two-cols-row-image.size-normal {
    padding-right: 52px
  }

  body.page-id-1458 .two-cols-row.grid.image-left .two-cols-row-image.size-normal {
    padding-left: 52px
  }
}

.product-form-wrapper {
  position: relative;
  overflow: hidden
}

.product-form-wrapper .wrapper {
  position: relative
}

@media (max-width: 599px) {
  .product-form-wrapper {
    padding-top: 39px;
    padding-bottom: 66px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .product-form-wrapper {
    padding-top: 48px;
    padding-bottom: 64px
  }
}

@media (min-width: 1200px) {
  .product-form-wrapper {
    padding-top: 113px;
    padding-bottom: 96px
  }
}

@media (max-width: 599px) {
  .product-form-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .product-form-text .nice-type {
    margin-top: 18px;
    margin-bottom: 78px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .product-form-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }

  .product-form-text .nice-type {
    margin-top: 29px;
    margin-bottom: 82px
  }
}

@media (min-width: 1200px) {
  .product-form-text {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px
  }

  .product-form-text .nice-type {
    margin-top: 25px;
    margin-bottom: 122px
  }
}

.product-form-data {
  clear: both
}

.product-form-data label {
  clear: both
}

@media (max-width: 599px) {
  .product-form-data label {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .product-form-data label {
    width: calc(25% - 25px);
    float: left;
    margin-left: 20px;
    padding-right: 1%
  }
}

@media (min-width: 1200px) {
  .product-form-data label {
    width: calc(16.66667% - 46.66667px);
    float: left;
    margin-left: 40px
  }
}

@media (max-width: 599px) {

  .product-form-data input[type="text"],
  .product-form-data input[type="email"],
  .product-form-data textarea {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    margin-top: 13px;
    margin-bottom: 42px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {

  .product-form-data input[type="text"],
  .product-form-data input[type="email"],
  .product-form-data textarea {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
    margin-bottom: 73px
  }
}

@media (min-width: 1200px) {

  .product-form-data input[type="text"],
  .product-form-data input[type="email"],
  .product-form-data textarea {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px;
    margin-bottom: 66px
  }
}

@media (max-width: 599px) {
  .generic-form-submit-box {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .generic-form-submit-box {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
    margin-left: calc(25% - 25px + 40px)
  }
}

@media (min-width: 1200px) {
  .generic-form-submit-box {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px;
    margin-left: calc(16.66667% - 46.66667px + 80px)
  }
}

.product-others {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #FCFCFC
}

.product-others .wrapper {
  position: relative;
  max-width: 100%
}

@media (min-width: 1200px) {
  .product-others.padded {
    padding-left: 0;
    padding-right: 0
  }

  .product-others .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}

.product-others-grad {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0)
}

.product-others-grad:before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  bottom: -30px;
  left: -30px;
  -webkit-filter: blur(15px);
  filter: blur(15px);
  background-image: url("../images/grad-1.png");
  background-size: 100% 100%
}

@-moz-document url-prefix() {
  .product-others-grad:before {
    background-image: url("../images/grad-1-large.png")
  }
}

@supports (-ms-ime-align: auto) {
  .product-others-grad:before {
    background-image: url("../images/grad-1-large.png")
  }
}

.product-others-item {
  position: relative
}

@media (max-width: 599px) {
  .product-others-item {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    padding-top: 35px;
    padding-bottom: 30px;
    margin-top: 2px;
    overflow: hidden;
    width: calc(100% + 48px);
    margin-left: -24px;
    padding-left: 28px;
    padding-right: 28px;
    -webkit-transform: translate3d(0, 0, 0)
  }

  .product-others-item:first-child {
    margin-top: 0
  }

  .product-others-item:nth-child(n+2) {
    border-top: 2px solid #FCFCFC
  }

  .product-others-item[href*="waveguides"] .product-others-item-image img {
    width: 85%;
    margin-top: -25px;
    margin-left: auto
  }

  .product-others-item[href*="projectors"] .product-others-item-image img {
    width: 65%;
    margin-left: auto;
    margin-top: 15px
  }

  .product-others-item[href*="modules"] .product-others-item-image img {
    width: 85%;
    margin-left: auto
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .product-others-item {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
    padding-top: 36px;
    padding-bottom: 30px;
    margin-top: 3px;
    overflow: hidden;
    width: calc(100% + 104px);
    margin-left: -52px;
    padding-left: 52px;
    padding-right: 52px;
    -webkit-transform: translate3d(0, 0, 0)
  }

  .product-others-item:first-child {
    margin-top: 0
  }

  .product-others-item:nth-child(n+2) {
    border-top: 2px solid #FCFCFC
  }

  .product-others-item[href*="waveguides"] .product-others-item-image img {
    width: 65%;
    margin-top: -75px;
    margin-left: auto
  }

  .product-others-item[href*="projectors"] .product-others-item-image img {
    width: 45%;
    margin-left: auto;
    margin-top: -75px
  }

  .product-others-item[href*="modules"] .product-others-item-image img {
    width: 65%;
    margin-left: auto;
    margin-top: -75px;
    margin-bottom: 20px
  }
}

@media (min-width: 1200px) {
  .product-others-item {
    display: block;
    padding-top: 54px;
    padding-bottom: 30px;
    width: 50%;
    padding-left: 4.7vw;
    padding-right: 4.7vw
  }

  .product-others-item:nth-child(n+2) {
    border-left: 2px solid #FCFCFC
  }

  .product-others-item[href*="waveguides"] .product-others-item-image img {
    width: 75%;
    margin-top: -25px;
    margin-left: auto
  }

  .product-others-item[href*="projectors"] .product-others-item-image img {
    width: 55%;
    margin-left: auto;
    margin-top: -15px
  }

  .product-others-item[href*="modules"] .product-others-item-image img {
    width: 75%;
    margin-left: auto;
    margin-top: -30px;
    margin-bottom: 20px
  }
}

.product-others-item-inner h3 {
  color: #FCFCFC
}

.product-others-item-inner .product-others-item-image img {
  display: block;
  width: 100%
}

@media (max-width: 599px) {
  .product-others-item-inner h3 {
    margin-bottom: 17px;
    font-size: 20px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .product-others-item-inner h3 {
    margin-bottom: 27px;
    font-size: 28px
  }

  .product-others-item-inner .product-others-item-image {
    margin-top: 20px
  }
}

@media (min-width: 1200px) {
  .product-others-item-inner h3 {
    margin-bottom: 17px
  }

  .product-others-item-inner .product-others-item-image {
    overflow: visible
  }
}

.product-hero-text-image .grad-blur {
  background-image: url("../images/grad-3-flip.png");
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  background-size: 100% 100%
}

@-moz-document url-prefix() {
  .product-hero-text-image .grad-blur {
    background-image: url("../images/grad-3-large-flip.png")
  }
}

@supports (-ms-ime-align: auto) {
  .product-hero-text-image .grad-blur {
    background-image: url("../images/grad-3-large-flip.png")
  }
}

.product-hero-text-image .wrapper {
  position: relative;
  color: #FCFCFC
}
.product-hero-text-image .wrapper .grid{
display: flex;
    align-items: center;}
@media (max-width: 599px) {
  .product-hero-text-image {
    padding-top: 55px;
    padding-bottom: 55px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .product-hero-text-image {
    padding-top: 78px;
    padding-bottom: 55px
  }
}

@media (min-width: 1200px) {
  .product-hero-text-image {
    padding-top: 90px;
    padding-bottom: 55px
  }
}

@media (max-width: 599px) {
  .product-hero-text-image-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .product-hero-text-image-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }
}

@media (min-width: 1200px) {
  .product-hero-text-image-text {
    width: calc(41.66667% - 56.66667px);
    float: left;
    margin-left: 40px
  }
}

@media (max-width: 599px) {
  .product-hero-text-image-image {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .product-hero-text-image-image img {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 35px
  }

  body.page-id-2133 .product-hero-text-image-image img {
    width: 65vw;
    margin-left: auto;
    margin-right: auto
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .product-hero-text-image-image {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
    margin-left: calc(25% - 25px + 40px)
  }

  .product-hero-text-image-image img {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 55px
  }

  body.page-id-2133 .product-hero-text-image-image img {
    width: 45vw;
    margin-left: auto
  }
}

@media (min-width: 1200px) {
  .product-hero-text-image-image {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px;
    margin-left: calc(8.33333% - 43.33333px + 80px)
  }

  .product-hero-text-image-image img {
    position: relative;
    display: block;
    width: 100%;
    width: calc(100% + 16px);
    margin-left: -36px;
    margin-top: -30px
  }

  body.page-id-2133 .product-hero-text-image-image img {
    width: 26vw;
    margin-left: auto;
    margin-right: auto
  }
}

.rd-development-wrapper .two-cols-row-image .development-cycle-svg-wrapper {
  width: 100%
}

.rd-development-wrapper .two-cols-row-image .development-cycle-svg-wrapper svg {
  display: block;
  width: 100%
}

@media (max-width: 599px) {
  .rd-development-wrapper {
    padding-top: 23px;
    padding-bottom: 23px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .rd-development-wrapper {
    padding-top: 52px;
    padding-bottom: 52px
  }
}

@media (min-width: 1200px) {
  .rd-development-wrapper {
    padding-bottom: 100px
  }
}

#cycle-ani-t-1,
#cycle-ani-t-3,
#cycle-ani-t-2,
#cycle-ani-t-4,
#cycle-ani-l-1,
#cycle-ani-l-2,
#cycle-ani-l-3,
#cycle-ani-l-4 {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease
}

#cycle-ani.active #cycle-ani-t-1,
#cycle-ani.active #cycle-ani-t-3,
#cycle-ani.active #cycle-ani-t-2,
#cycle-ani.active #cycle-ani-t-4,
#cycle-ani.active #cycle-ani-l-1,
#cycle-ani.active #cycle-ani-l-2,
#cycle-ani.active #cycle-ani-l-3,
#cycle-ani.active #cycle-ani-l-4 {
  opacity: 1
}

#cycle-ani.active #cycle-ani-l-1 {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s
}

#cycle-ani.active #cycle-ani-t-2 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s
}

#cycle-ani.active #cycle-ani-l-2 {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s
}

#cycle-ani.active #cycle-ani-t-3 {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s
}

#cycle-ani.active #cycle-ani-l-3 {
  -webkit-transition-delay: 1s;
  transition-delay: 1s
}

#cycle-ani.active #cycle-ani-t-4 {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s
}

#cycle-ani.active #cycle-ani-l-4 {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s
}

.rd-roadmaps-wrapper {
  background: #EFEFF1
}

@media (max-width: 599px) {
  .rd-roadmaps-wrapper {
    padding-top: 50px;
    padding-bottom: 63px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .rd-roadmaps-wrapper {
    padding-top: 58px;
    padding-bottom: 64px
  }
}

@media (min-width: 1200px) {
  .rd-roadmaps-wrapper {
    padding-top: 106px;
    padding-bottom: 106px
  }
}

@media (max-width: 599px) {
  .rd-roadmaps-product-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .rd-roadmaps-product-text .nice-type {
    margin-top: 18px;
    margin-bottom: 61px
  }

  .rd-roadmaps-product-text .nice-type .minitable {
    margin-top: 52px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .rd-roadmaps-product-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }

  .rd-roadmaps-product-text .nice-type {
    margin-top: 30px;
    margin-bottom: 57px
  }

  .rd-roadmaps-product-text .nice-type .minitable {
    margin-top: 56px
  }
}

@media (min-width: 1200px) {
  .rd-roadmaps-product-text {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px
  }

  .rd-roadmaps-product-text .nice-type {
    margin-top: 30px;
    margin-bottom: 62px
  }

  .rd-roadmaps-product-text .nice-type .minitable {
    margin-top: 88px
  }
}

@media (max-width: 599px) {
  .rd-roadmaps-product-image {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .rd-roadmaps-product-image svg {
    margin-left: 0
  }

  .rd-roadmaps-product-image svg.desktop {
    display: none
  }

  .rd-roadmaps-product-image svg.mobile {
    display: block;
    width: calc(100% + 1.8%);
    margin-left: -4%
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .rd-roadmaps-product-image {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px
  }

  .rd-roadmaps-product-image svg.desktop {
    display: block;
    width: calc(100% + 4.4%);
    margin-left: 0
  }

  .rd-roadmaps-product-image svg.mobile {
    display: none
  }
}

@media (min-width: 1200px) {
  .rd-roadmaps-product-image {
    width: calc(100% - 80px);
    float: left;
    margin-left: 40px
  }

  .rd-roadmaps-product-image svg.desktop {
    display: block;
    width: calc(100% + 4.4%);
    margin-left: 0
  }
}

@media (min-width: 1200px) and (max-width: 1650px) {
  .rd-roadmaps-product-image svg.desktop {
    width: calc(100% + 2%)
  }
}

@media (min-width: 1200px) {
  .rd-roadmaps-product-image svg.mobile {
    display: none
  }
}

@media (max-width: 599px) {
  .rd-roadmaps-product+.rd-roadmaps-tech {
    margin-top: 67px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .rd-roadmaps-product+.rd-roadmaps-tech {
    margin-top: 64px
  }
}

@media (min-width: 1200px) {
  .rd-roadmaps-product+.rd-roadmaps-tech {
    margin-top: 157px
  }
}

@media (max-width: 599px) {
  .rd-roadmaps-tech-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .rd-roadmaps-tech-text .nice-type {
    margin-top: 18px;
    margin-bottom: 51px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .rd-roadmaps-tech-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }

  .rd-roadmaps-tech-text .nice-type {
    margin-top: 29px;
    margin-bottom: 84px
  }
}

@media (min-width: 1200px) {
  .rd-roadmaps-tech-text {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px
  }

  .rd-roadmaps-tech-text .nice-type {
    margin-top: 20px;
    margin-bottom: 124px
  }
}

.rd-roadmaps-tech-image img {
  width: 100%;
  display: block
}

@media (max-width: 599px) {
  .rd-roadmaps-tech-image {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .rd-roadmaps-tech-image svg {
    width: calc(100% - 1%)
  }

  .rd-roadmaps-tech-image svg.desktop {
    display: none
  }

  .rd-roadmaps-tech-image svg.mobile {
    display: block
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .rd-roadmaps-tech-image {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px
  }

  .rd-roadmaps-tech-image svg.desktop {
    display: block
  }

  .rd-roadmaps-tech-image svg.mobile {
    display: none
  }
}

@media (min-width: 1200px) {
  .rd-roadmaps-tech-image {
    width: calc(100% - 80px);
    float: left;
    margin-left: 40px
  }

  .rd-roadmaps-tech-image svg.desktop {
    display: block;
    width: 100%
  }

  .rd-roadmaps-tech-image svg.mobile {
    display: none
  }
}

.rd-team-wrapper {
  position: relative;
  overflow: hidden
}

.rd-team-wrapper .wrapper {
  position: relative
}

@media (max-width: 599px) {
  .rd-team-wrapper {
    padding-top: 38px;
    padding-bottom: 70px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .rd-team-wrapper {
    padding-top: 68px;
    padding-bottom: 76px
  }
}

@media (min-width: 1200px) {
  .rd-team-wrapper {
    padding-top: 139px;
    padding-bottom: 130px
  }
}

@media (max-width: 599px) {
  .rd-team-row {
    margin-top: 63px
  }

  .rd-team-row:nth-child(even) .rd-team-row-images .rd-team-row-images-carousel {
    margin-left: -24px
  }

  .rd-team-row:nth-child(even) .rd-team-row-images .rd-team-row-images-carousel .flickity-page-dots {
    left: auto;
    right: 0
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .rd-team-row {
    margin-top: 70px
  }

  .rd-team-row:nth-child(even) .rd-team-row-images {
    margin-left: 20px
  }

  .rd-team-row:nth-child(even) .flickity-page-dots {
    right: 0;
    left: auto
  }
}

@media (min-width: 1200px) {
  .rd-team-row {
    margin-top: 84px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }

  .rd-team-row:nth-child(even) .rd-team-row-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .rd-team-row:nth-child(even) .rd-team-row-images {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    left: calc(-8.33333% - 36.66667px + 40px);
    position: relative
  }

  .rd-team-row:nth-child(even) .rd-team-row-images .rd-team-row-images-carousel {
    -ms-flex-negative: 0;
    flex-shrink: 0
  }

  .rd-team-row:nth-child(even) .flickity-page-dots {
    right: 0;
    left: auto
  }
}

.rd-team-row:first-child {
  margin-top: 0
}

@media (max-width: 599px) {
  .rd-team-row-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .rd-team-row-text .nice-type {
    margin-top: 30px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .rd-team-row-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }

  .rd-team-row-text .nice-type {
    margin-top: 29px
  }
}

@media (min-width: 1200px) {
  .rd-team-row-text {
    width: calc(41.66667% - 56.66667px);
    float: left;
    margin-left: 40px
  }

  .rd-team-row-text .nice-type {
    margin-top: 28px
  }
}

@media (max-width: 599px) {
  .rd-team-row-images {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    margin-top: 44px
  }

  .rd-team-row-images .rd-team-row-images-carousel {
    width: calc(100% + 24px)
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .rd-team-row-images {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
    margin-left: calc(25% - 25px + 40px);
    margin-top: 56px
  }

  .rd-team-row-images .rd-team-row-images-carousel {
    width: calc(100% + 52px);
    margin-left: -52px
  }
}

@media (min-width: 1200px) {
  .rd-team-row-images {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px;
    margin-left: calc(8.33333% - 43.33333px + 80px)
  }

  .rd-team-row-images .rd-team-row-images-carousel {
    width: calc(50vw - 20px)
  }
}

.rd-team-row-images-carousel {
  background: #EFEFF1;
  position: relative;
  outline: 0
}

.rd-team-row-images-carousel .flickity-viewport {
  overflow: hidden
}

.rd-team-row-images-carousel .flickity-page-dots {
  position: absolute;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1px
}

.rd-team-row-images-carousel .flickity-page-dots li {
  display: inline-block;
  border-radius: 10px;
  background: red;
  background: rgba(0, 0, 0, 0.5)
}

.rd-team-row-images-carousel .flickity-page-dots li.is-selected {
  background: #00A2FF
}

@media (max-width: 599px) {
  .rd-team-row-images-carousel .flickity-page-dots {
    bottom: -20px
  }

  .rd-team-row-images-carousel .flickity-page-dots li {
    width: 5px;
    height: 5px;
    margin-right: 5px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .rd-team-row-images-carousel .flickity-page-dots {
    bottom: -23px
  }

  .rd-team-row-images-carousel .flickity-page-dots li {
    width: 7px;
    height: 7px;
    margin-right: 7px
  }
}

@media (min-width: 1200px) {
  .rd-team-row-images-carousel .flickity-page-dots {
    bottom: -23px
  }

  .rd-team-row-images-carousel .flickity-page-dots li {
    width: 8px;
    height: 8px;
    margin-right: 8px
  }
}

.rd-team-row-images-carousel-item {
  width: 100%;
  background-size: cover;
  background-position: center center
}

.rd-team-row-images-carousel-item:before {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 56.25%
}

.manu-approach-wrapper {
  overflow: hidden;
  position: relative
}

@media (max-width: 599px) {
  .manu-approach-wrapper {
    padding-bottom: 39px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .manu-approach-wrapper {
    padding-top: 48px;
    padding-bottom: 96px
  }
}

@media (min-width: 1200px) {
  .manu-approach-wrapper {
    padding-top: 47px;
    padding-bottom: 145px
  }
}

.manu-approach-wrapper .wrapper {
  position: relative
}

@media (max-width: 599px) {
  .manu-approach-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .manu-approach-text .nice-type {
    margin-top: 23px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .manu-approach-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }

  .manu-approach-text .nice-type {
    margin-top: 22px
  }
}

@media (min-width: 1200px) {
  .manu-approach-text {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px
  }

  .manu-approach-text .nice-type {
    margin-top: 58px
  }
}

@media (max-width: 599px) {
  .manu-approach-timeline {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    margin-top: 41px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .manu-approach-timeline {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
    margin-top: 72px
  }
}

@media (min-width: 1200px) {
  .manu-approach-timeline {
    width: calc(100% - 80px);
    float: left;
    margin-left: 40px;
    margin-top: 134px
  }
}

@media (max-width: 599px) {
  .manu-approach-timeline-inner ol {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none
  }

  .manu-approach-timeline-inner li {
    position: relative;
    padding-left: 50px;
    padding-bottom: 39px
  }

  .manu-approach-timeline-inner li:before {
    content: attr(data-num);
    display: block;
    width: 27px;
    height: 27px;
    background: #00A2FF;
    color: #FCFCFC;
    font-size: 18px;
    text-align: center;
    line-height: 28px;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10
  }

  .manu-approach-timeline-inner li:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 12px;
    bottom: 0;
    width: 3px;
    background: rgba(150, 150, 150, 0.25);
    z-index: 5
  }

  .manu-approach-timeline-inner li:last-child {
    padding-bottom: 0
  }

  .manu-approach-timeline-inner li:last-child:after {
    display: none
  }

  .manu-approach-timeline-inner li:last-child p {
    max-width: 280px
  }

  .manu-approach-timeline-inner h4 {
    font-family: 'Wave-BrownStd-Regular';
    font-size: 18px;
    padding-top: 2px;
    letter-spacing: 0.1em;
    text-transform: uppercase
  }

  .manu-approach-timeline-inner p {
    margin: 0;
    margin-top: 2px;
    max-width: 220px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .manu-approach-timeline-inner ol {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none
  }

  .manu-approach-timeline-inner li {
    position: relative;
    padding-left: 83px;
    padding-bottom: 78px
  }

  .manu-approach-timeline-inner li:before {
    content: attr(data-num);
    display: block;
    width: 39px;
    height: 39px;
    background: #00A2FF;
    color: #FCFCFC;
    font-size: 24px;
    text-align: center;
    line-height: 39px;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10
  }

  .manu-approach-timeline-inner li:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 18px;
    bottom: 0;
    width: 3px;
    background: rgba(150, 150, 150, 0.25);
    z-index: 5
  }

  .manu-approach-timeline-inner li:last-child {
    padding-bottom: 0
  }

  .manu-approach-timeline-inner li:last-child:after {
    display: none
  }

  .manu-approach-timeline-inner li:last-child p {
    max-width: 400px
  }

  .manu-approach-timeline-inner h4 {
    letter-spacing: 0.1em;
    text-transform: uppercase
  }

  .manu-approach-timeline-inner p {
    margin: 0;
    margin-top: 10px;
    max-width: 413px;
    max-width: 275px
  }
}

@media (min-width: 1200px) {
  .manu-approach-timeline-inner ol {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 130px;
    padding-bottom: 170px
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .manu-approach-timeline-inner ol {
    padding-right: 7%
  }
}

@media (min-width: 1200px) {
  .manu-approach-timeline-inner li {
    display: inline-block;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    position: relative
  }

  .manu-approach-timeline-inner li:before {
    content: attr(data-num);
    display: block;
    width: 43px;
    height: 43px;
    background: #00A2FF;
    color: #FCFCFC;
    font-size: 28px;
    text-align: center;
    line-height: 42px;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10
  }

  .manu-approach-timeline-inner li:nth-child(odd) .inner {
    position: absolute;
    left: 0;
    top: -129px
  }

  .manu-approach-timeline-inner li:nth-child(even) .inner {
    position: absolute;
    left: 0;
    bottom: -167px
  }

  .manu-approach-timeline-inner li:nth-child(1):after {
    content: '';
    position: absolute;
    top: 19px;
    left: -50vw;
    bottom: 0;
    width: 300vw;
    height: 3px;
    background: rgba(39, 48, 110, 0.25);
    z-index: 5
  }

  .manu-approach-timeline-inner li:nth-child(1) p {
    max-width: 200px
  }

  .manu-approach-timeline-inner li:nth-child(2) p {
    max-width: 230px
  }

  .manu-approach-timeline-inner li:nth-child(3) p {
    max-width: 230px
  }

  .manu-approach-timeline-inner li:nth-child(4) p {
    max-width: 200px
  }

  .manu-approach-timeline-inner li:nth-child(5) p {
    max-width: 200px
  }

  .manu-approach-timeline-inner li:nth-child(6) p {
    max-width: 280px
  }

  .manu-approach-timeline-inner .inner {
    display: block;
    width: 300px;
    height: 100px
  }

  .manu-approach-timeline-inner h4 {
    font-family: 'Wave-BrownStd-Regular';
    font-size: 23px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap
  }

  .manu-approach-timeline-inner p {
    margin: 0;
    margin-top: 17px;
    font-size: 15px;
    line-height: 21px
  }
}

.manu-video-block {
  position: relative;
  overflow: hidden
}

@media (max-width: 599px) {
  .manu-video-block {
    padding-top: 59px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .manu-video-block {
    padding-top: 58px
  }
}

@media (min-width: 1200px) {
  .manu-video-block {
    padding-top: 104px
  }
}

.manu-video-block .wrapper {
  position: relative
}

.manu-production-wrapper {
  position: relative
}

@media (min-width: 1200px) {
  .manu-production-wrapper {
    min-height: 540px
  }
}

@media (max-width: 1199px) {
  .manu-production-wrapper {
    max-height: none
  }

  .manu-production-wrapper.banner-image:before {
    display: none
  }
}

.manu-production-image {
  background-size: cover;
  background-position: center center
}

@media (max-width: 1199px) {
  .manu-production-image {
    position: static
  }

  .manu-production-image:before {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 40%
  }
}

@media (min-width: 1200px) {
  .manu-production-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
  }
}

@media (max-width: 599px) {
  .manu-production-wrapper-inner {
    background: #EFEFF1;
    padding-top: 47px;
    padding-bottom: 59px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .manu-production-wrapper-inner {
    background: #EFEFF1;
    padding-top: 38px;
    padding-bottom: 73px
  }
}

@media (min-width: 1200px) {
  .manu-production-wrapper-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 2vw
  }
}

@media (max-width: 599px) {
  .manu-production-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .manu-production-text .nice-type {
    margin-top: 32px;
    margin-bottom: 40px
  }

  .manu-production-text img {
    display: block;
    width: 100%;
    max-width: 152px
  }

  .manu-production-text img.light {
    display: none
  }

  .manu-production-text cite {
    display: block;
    font-size: 13px;
    font-style: normal;
    margin-top: 40px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .manu-production-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }

  .manu-production-text .nice-type {
    margin-top: 25px;
    margin-bottom: 118px
  }

  .manu-production-text img {
    display: block;
    width: 100%;
    max-width: 230px
  }

  .manu-production-text img.light {
    display: none
  }

  .manu-production-text cite {
    display: block;
    font-size: 15px;
    font-style: normal;
    margin-top: 45px
  }
}

@media (min-width: 1200px) {
  .manu-production-text {
    width: calc(41.66667% - 56.66667px);
    float: left;
    margin-left: 40px
  }

  .manu-production-text .nice-type {
    margin-top: 28px;
    margin-bottom: 66px
  }

  .manu-production-text img {
    display: block;
    width: 100%;
    max-width: 230px
  }

  .manu-production-text img.dark {
    display: none
  }

  .manu-production-text cite {
    display: block;
    font-size: 15px;
    font-style: normal;
    margin-top: 64px
  }
}

.manu-partners {
  background-color: #EFEFF1
}

@media (max-width: 599px) {
  .manu-partners {
    margin-top: 23px;
    padding-top: 23px;
    padding-bottom: 50px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .manu-partners {
    margin-top: 52px;
    padding-top: 52px;
    padding-bottom: 80px
  }
}

@media (min-width: 1200px) {
  .manu-partners {
    margin-top: 100px;
    padding-top: 100px;
    padding-bottom: 135px
  }
}

@media (max-width: 599px) {
  .manu-partners-inner {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .manu-partners-inner {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px
  }
}

@media (min-width: 1200px) {
  .manu-partners-inner {
    width: calc(100% - 80px);
    float: left;
    margin-left: 40px
  }
}

.manu-partners-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

@media (max-width: 599px) {
  .manu-partners-logos {
    margin-top: 31px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .manu-partners-logos {
    margin-top: 51px
  }
}

@media (min-width: 1200px) {
  .manu-partners-logos {
    margin-top: 71px
  }
}

.manu-partners-logo-item {
  display: block
}

.manu-partners-logo-item img {
  display: block
}

@media (max-width: 599px) {
  .manu-partners-logo-item {
    width: 100%
  }

  .manu-partners-logo-item:nth-child(n+2) {
    margin-top: 50px
  }

  .manu-partners-logo-item img {
    max-width: 150px;
    max-height: 57px;
    margin-left: auto;
    margin-right: auto
  }
}

@media (min-width: 600px) and (max-width: 999px) {
  .manu-partners-logo-item {
    width: 50%
  }

  .manu-partners-logo-item:nth-child(n+3) {
    margin-top: 50px
  }

  .manu-partners-logo-item img {
    max-width: 170px;
    max-height: 65px;
    margin-left: auto;
    margin-right: auto
  }
}

@media (min-width: 1000px) and (max-width: 1199px) {
  .manu-partners-logo-item {
    margin: 20px
  }

  .manu-partners-logo-item img {
    max-width: 170px;
    max-height: 65px;
    margin-left: auto;
    margin-right: auto
  }
}

@media (min-width: 1200px) {
  .manu-partners-logo-item {
    margin: 20px
  }

  .manu-partners-logo-item img {
    max-width: 200px;
    max-height: 76px
  }
}

.manu-facility-rows.product-rows {
  background: none;
  padding-bottom: 0
}

.text-page-wrapper {
  position: relative
}

.text-page-wrapper .grid {
  position: relative
}

@media (max-width: 599px) {
  .text-page-content {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    padding-bottom: 130px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .text-page-content {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
    padding-bottom: 130px
  }
}

@media (min-width: 1200px) {
  .text-page-content {
    width: calc(58.33333% - 63.33333px);
    float: left;
    margin-left: 40px;
    padding-bottom: 130px
  }
}

@media (max-width: 599px) {
  .contact-page-intro {
    padding-bottom: 60px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .contact-page-intro {
    padding-bottom: 80px
  }
}

@media (min-width: 1200px) {
  .contact-page-intro {
    padding-bottom: 100px
  }
}

.contact-page-intro .contact-emails {
  line-height: 1.9
}

.contact-page-intro .social-icons svg {
  fill: #00A2FF
}

.contact-map {
  background: #EFEFF1;
  position: relative
}

@media (min-width: 1200px) {
  .contact-map {
    //height: 1080px
  }
}

@media (max-width: 599px) {
  .contact-map .acf-map {
    position: relative
  }

  .contact-map .acf-map:before {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .contact-map .acf-map {
    position: relative
  }

  .contact-map .acf-map:before {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 73%
  }
}

@media (min-width: 1200px) {
  .contact-map .acf-map {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10
  }
}

.contact-map .acf-map>*:first-child {
  background-color: #EFEFF1 !important
}

.contact-location {
  display: none
}

@media (max-width: 1199px) {
  .contact-locations-wrapper {
    background: #FCFCFC
  }
}

@media (min-width: 1200px) {
  .contact-locations-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 20;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none
  }
}

.contact-locations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  pointer-events: auto
}

@media (max-width: 599px) {
  .contact-locations {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    padding: 38px 0 45px 0px;
    height: 315px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .contact-locations {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
    padding: 48px 0 66px 0px;
    height: 394px
  }
}

@media (min-width: 1200px) {
  .contact-locations {
    width: calc(41.66667% - 56.66667px);
    float: left;
    margin-left: 40px;
    position: relative;
    height: 464px;
    padding: 47px 40px 70px 0px
  }

  .contact-locations:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50vw;
    background: #FCFCFC
  }
}

.contact-location {
  position: relative
}

@media (max-width: 599px) {
  .contact-location .nice-type {
    padding-top: 10px;
    padding-bottom: 25px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .contact-location .nice-type {
    padding-top: 12px;
    padding-bottom: 36px
  }
}

@media (min-width: 1200px) {
  .contact-location .nice-type {
    padding-top: 24px;
    padding-bottom: 41px
  }
}

.contact-locations-next-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  margin-top: auto;
  padding-top: 20px
}

@media (min-width: 600px) and (max-width: 1199px) {
  .contact-locations-next-prev {
    width: calc(50% - 10px)
  }
}

@media (min-width: 1200px) {
  .contact-locations-next-prev {
    max-width: 480px
  }
}

.contact-map-pin {
  background-image: url("../fonts/map_pin.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease
}

.contact-map-pin.active {
  -webkit-transform: scale(1);
  transform: scale(1)
}

@media (max-width: 599px) {
  .contact-map-pin {
    width: 15px;
    height: 18px;
    background-size: 15px 18px;
    -webkit-transform: scale(0.42);
    transform: scale(0.42);
    width: 30px;
    height: 36px;
    background-size: 30px 36px;
    transform: scale(0.42)
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .contact-map-pin {
    width: 22px;
    height: 27px;
    background-size: 22px 27px;
    -webkit-transform: scale(0.42);
    transform: scale(0.42)
  }
}

@media (min-width: 1200px) {
  .contact-map-pin {
    width: 42px;
    height: 52px;
    background-size: 42px 52px;
    -webkit-transform: scale(0.42);
    transform: scale(0.42)
  }
}

.faq-page-wrapper {
  position: relative
}

@media (max-width: 599px) {
  .faq-page-wrapper {
    margin-top: 14px;
    padding-bottom: 50px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .faq-page-wrapper {
    margin-top: 0;
    padding-bottom: 130px
  }
}

@media (min-width: 1200px) {
  .faq-page-wrapper {
    margin-top: -54px;
    padding-bottom: 100px
  }
}

.faq-page-wrapper .wrapper {
  position: relative
}

.faq-items {
  border-bottom: 2px solid #8E8E8E
}

@media (max-width: 599px) {
  .faq-items {
    padding-bottom: 24px;
    border-width: 1px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .faq-items {
    padding-bottom: 20px
  }
}

@media (min-width: 1200px) {
  .faq-items {
    padding-bottom: 52px
  }
}

.faq-items.padded-wrapper {
  max-width: 630px;
  max-width: 674px
}

@media (max-width: 599px) {
  .faq-item {
    margin-top: 24px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .faq-item {
    margin-top: 20px
  }
}

@media (min-width: 1200px) {
  .faq-item {
    margin-top: 52px
  }
}

.faq-item:first-child {
  margin-top: 0
}

.faq-item-title {
  position: relative;
  border-top: 2px solid #8E8E8E
}

@media (max-width: 599px) {
  .faq-item-title {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    border-width: 1px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 40px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .faq-item-title {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
    padding-top: 16px;
    padding-bottom: 16px
  }
}

@media (min-width: 1200px) {
  .faq-item-title {
    width: calc(100% - 80px);
    float: left;
    margin-left: 40px;
    padding-top: 16px;
    padding-bottom: 16px
  }
}

.faq-item-title h3 {
  cursor: pointer
}

.faq-item-toggle {
  position: absolute;
  right: 0;
  display: block;
  background: transparent;
  pointer-events: none
}

.faq-item-toggle:focus {
  outline: 0
}

.faq-item-toggle:before,
.faq-item-toggle:after {
  content: '';
  background: #8E8E8E;
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease
}

.faq-item-toggle:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg)
}

[data-accordion-item="open"] .faq-item-toggle:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

[data-accordion-item="open"] .faq-item-toggle:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

@media (max-width: 599px) {
  .faq-item-toggle {
    width: 18px;
    height: 18px;
    top: 15px
  }

  .faq-item-toggle:before,
  .faq-item-toggle:after {
    width: 18px;
    height: 2px;
    top: 4px;
    left: 0
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .faq-item-toggle {
    width: 32px;
    height: 32px;
    top: 13px
  }

  .faq-item-toggle:before,
  .faq-item-toggle:after {
    width: 32px;
    height: 3px;
    top: 18px;
    left: 0
  }
}

@media (min-width: 1200px) {
  .faq-item-toggle {
    width: 38px;
    height: 38px;
    top: 16px
  }

  .faq-item-toggle:before,
  .faq-item-toggle:after {
    width: 38px;
    height: 3px;
    top: 18px;
    left: 0
  }
}

.faq-item-answer {
  display: none
}

@media (max-width: 599px) {
  .faq-item-answer {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .faq-item-answer .nice-type {
    padding-top: 15px;
    padding-bottom: 80px;
    padding-right: 11%
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .faq-item-answer {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }

  .faq-item-answer .nice-type {
    padding-top: 39px;
    padding-bottom: 60px
  }
}

@media (min-width: 1200px) {
  .faq-item-answer {
    width: calc(58.33333% - 63.33333px);
    float: left;
    margin-left: 40px
  }

  .faq-item-answer .nice-type {
    padding-top: 39px;
    padding-bottom: 60px
  }
}

body.error404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh
}

.erorr404-wrapper {
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
  position: relative;
  overflow: hidden
}

.erorr404-wrapper .wrapper {
  position: relative
}

@media (max-width: 599px) {
  .erorr404-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    padding-top: 43px;
    padding-bottom: 43px
  }

  .erorr404-text .nice-type {
    margin-top: 1.25em;
    margin-bottom: 2.4em
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .erorr404-text {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
    padding-top: 55px;
    padding-bottom: 55px
  }

  .erorr404-text .nice-type {
    margin-top: 1.6em;
    margin-bottom: 3.3em
  }
}

@media (min-width: 1200px) {
  .erorr404-text {
    width: calc(100% - 80px);
    float: left;
    margin-left: 40px;
    padding-top: 102px;
    padding-bottom: 102px
  }

  .erorr404-text .nice-type {
    margin-top: 2.7em;
    margin-bottom: 2.3em
  }
}

@media (max-width: 599px) {

  body.blog .page-header,
  body.archive.category .page-header {
    padding-top: 43px;
    padding-bottom: 0
  }
}

@media (min-width: 600px) and (max-width: 1199px) {

  body.blog .page-header,
  body.archive.category .page-header {
    padding-top: 55px;
    padding-bottom: 0
  }
}

@media (min-width: 1200px) {

  body.blog .page-header,
  body.archive.category .page-header {
    padding-bottom: 0
  }
}

@media (max-width: 599px) {
  .news-index-categories-wrapper {
    margin-top: 16px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-index-categories-wrapper {
    margin-top: -3px
  }
}

@media (min-width: 1200px) {
  .news-index-categories-wrapper {
    margin-top: -10px
  }
}

@media (max-width: 599px) {
  .news-index-categories {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .news-index-categories a {
    padding: 0.5em 0
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-index-categories {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px
  }
}

@media (min-width: 1200px) {
  .news-index-categories {
    width: calc(83.33333% - 73.33333px);
    float: left;
    margin-left: 40px;
    margin-left: calc(16.66667% - 46.66667px + 80px)
  }
}

.news-items-wrapper {
  position: relative
}

.news-items-wrapper .wrapper {
  position: relative
}

@media (max-width: 599px) {
  .news-items-wrapper {
    margin-top: 44px;
    padding-bottom: 32px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-items-wrapper {
    margin-top: 62px;
    padding-bottom: 56px
  }
}

@media (min-width: 1200px) {
  .news-items-wrapper {
    margin-top: 56px;
    padding-bottom: 100px
  }
}

.news-items:before {
  font-size: 1px;
  width: 0;
  height: 0;
  opacity: 0
}

@media (max-width: 599px) {
  .news-items {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }

  .news-items:before {
    content: '1 .column.size-1of1'
  }

  .news-items .size-1of1 {
    width: 100%
  }

  .news-items .news-item {
    margin-top: 65px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-items {
    width: calc(66.66667% - 33.33333px);
    float: left;
    margin-left: 20px;
    margin-left: calc(33.33333% - 26.66667px + 40px)
  }

  .news-items:before {
    content: '1 .column.size-1of1'
  }

  .news-items .size-1of1 {
    width: 100%
  }

  .news-items .news-item {
    margin-top: 58px
  }
}

@media (min-width: 1200px) {
  .news-items {
    width: calc(83.33333% - 73.33333px);
    float: left;
    margin-left: 40px;
    margin-left: calc(16.66667% - 46.66667px + 80px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }

  .news-items:before {
    content: '2 .column.size-1of2'
  }

  .news-items .size-1of2 {
    width: calc(50% - 20px)
  }

  .news-items .news-item {
    margin-top: 98px
  }
}

.news-items .column .news-item:first-child {
  margin-top: 0
}

@media (max-width: 599px) {
  .news-index-more {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    padding-top: 51px;
    padding-bottom: 0
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-index-more {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
    padding-top: 54px;
    padding-bottom: 0
  }
}

@media (min-width: 1200px) {
  .news-index-more {
    width: calc(100% - 80px);
    float: left;
    margin-left: 40px;
    padding-top: 82px;
    padding-bottom: 0
  }
}

.news-single {
  position: relative
}

.news-single .wrapper {
  position: relative
}

.news-single-header {
  padding-bottom: 0
}

@media (max-width: 599px) {
  .news-single-header {
    padding-top: 43px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-single-header {
    padding-top: 55px
  }
}

@media (min-width: 1200px) {
  .news-single-header {
    padding-top: 148px
  }
}

@media (max-width: 599px) {
  .news-single-header .page-header-title {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-single-header .page-header-title {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }
}

@media (min-width: 1200px) {
  .news-single-header .page-header-title {
    //width: calc(50% - 60px);
    float: left;
    margin-left: 40px;
text-align: center;
  }
}

.news-single-header .page-header-title h1 {
  margin-bottom: 0
}

@media (max-width: 599px) {
  .news-single-tags-wrapper {
    margin-top: 26px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-single-tags-wrapper {
    margin-top: 57px
  }
}

@media (min-width: 1200px) {
  .news-single-tags-wrapper {
    margin-top: 77px
  }
}

@media (max-width: 599px) {
  .news-single-tags {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-single-tags {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }
}

@media (min-width: 1200px) {
  .news-single-tags {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px
  }
}

@media (max-width: 599px) {
  .news-single-content-wrapper {
    margin-top: 46px;
    padding-bottom: 77px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-single-content-wrapper {
    margin-top: 48px;
    padding-bottom: 86px
  }
}

@media (min-width: 1200px) {
  .news-single-content-wrapper {
    margin-top: 98px;
    padding-bottom: 125px
  }

  .news-single-content-wrapper .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }

  .news-single-content-wrapper .grid .news-single-image {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .news-single-content-wrapper .grid .news-single-content {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }
}

.news-single-image {
  margin: 0;
  padding: 0
}

.news-single-image img {
  display: block;
  width: 100%
}

@media (max-width: 599px) {
  .news-single-image {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-single-image {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
    margin-left: calc(25% - 25px + 40px)
  }

  .news-single-image img {
    width: calc(100% + 52px)
  }
}

@media (min-width: 1200px) {
  .news-single-image {
    width: calc(41.66667% - 56.66667px);
    float: left;
    margin-left: 40px;
    margin-left: calc(8.33333% - 43.33333px + 80px)
  }

  .news-single-image img {
    min-width: 100%
  }
}

@media (min-width: 1200px) and (max-width: 1559px) {
  .news-single-image img {
    width: calc(100% + 6.5vw)
  }
}

@media (min-width: 1200px) and (min-width: 1560px) {
  .news-single-image img {
    width: calc(100% + calc((100vw - 1460px) / 2))
  }
}

@media (max-width: 599px) {
  .news-single-content {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    margin-top: 45px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-single-content {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
    margin-top: 48px
  }
}

@media (min-width: 1200px) {
  .news-single-content {
   //width: calc(50% - 60px);
    float: left;
    margin-left: 40px;
width:100%;
  }
}

@media (max-width: 599px) {
  .news-single-meta {
    margin-top: 44px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-single-meta {
    margin-top: 57px
  }
}

@media (min-width: 1200px) {
  .news-single-meta {
    margin-top: 62px
  }
}

.news-single-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}

@media (max-width: 599px) {
  .news-single-share {
    margin-top: 69px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-single-share {
    margin-top: 53px
  }
}

@media (min-width: 1200px) {
  .news-single-share {
    margin-top: 68px
  }
}

.news-single-share a {
  display: block;
  margin-left: 37px
}

.news-single-share a:first-child {
  margin-left: 0
}

.news-single-share svg {
  display: block;
  fill: #222
}

.news-single-share svg[data-icon="email"] {
  width: 24px;
  height: 17px
}

.news-single-share svg[data-icon="twitter"] {
  width: 23px;
  height: 19px
}

.news-single-share svg[data-icon="linkedin"] {
  width: 20px;
  height: 19px
}

.news-single-share svg[data-icon="facebook"] {
  width: 10px;
  height: 20px
}

.news-single-next-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

@media (max-width: 599px) {
  .news-single-next-prev {
    margin-top: 54px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-single-next-prev {
    margin-top: 79px
  }
}

@media (min-width: 1200px) {
  .news-single-next-prev {
    margin-top: 99px
  }
}

.news-single-next-prev a {
  display: block
}

.news-single-next-prev span {
  font-size: 1px;
  line-height: 1
}

@media (max-width: 599px) {
  .news-single-related-wrapper {
    padding-bottom: 78px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-single-related-wrapper {
    padding-bottom: 58px
  }
}

@media (min-width: 1200px) {
  .news-single-related-wrapper {
    padding-bottom: 130px
  }
}

@media (max-width: 599px) {
  .news-single-related-title {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-single-related-title {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px
  }
}

@media (min-width: 1200px) {
  .news-single-related-title {
    width: calc(100% - 80px);
    float: left;
    margin-left: 40px
  }
}

@media (max-width: 599px) {
  .news-single-related-items {
    margin-top: 58px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-single-related-items {
    margin-top: 100px
  }
}

@media (min-width: 1200px) {
  .news-single-related-items {
    margin-top: 100px
  }
}

.news-item img {
  display: block;
  width: 100%
}

.news-image-wrapper.crop-square {
  background-size: cover;
  background-position: center center
}

.news-image-wrapper.crop-square:before {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%
}

.news-image-wrapper.crop-square img {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0
}

.news-block-inner {
  display: block
}

@media (max-width: 599px) {
  .news-item.has-post-thumbnail .news-item-text {
    padding-top: 23px
  }

  .news-item.no-post-thumbnail .news-item-text {
    padding-top: 13px;
    border-top: 3px solid #707070
  }

  .news-item-excerpt {
    padding-top: 13px
  }

  .news-item-categories {
    padding-top: 21px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .news-item.has-post-thumbnail .news-item-text {
    padding-top: 28px
  }

  .news-item.no-post-thumbnail .news-item-text {
    padding-top: 23px;
    border-top: 3px solid #707070
  }

  .news-item-excerpt {
    padding-top: 15px
  }

  .news-item-categories {
    padding-top: 28px
  }
}

@media (min-width: 1200px) {
  .news-item.has-post-thumbnail .news-item-text {
    padding-top: 37px
  }

  .news-item.no-post-thumbnail .news-item-text {
    padding-top: 23px;
    border-top: 3px solid #707070
  }

  .news-item-excerpt {
    padding-top: 32px
  }

  .news-item-categories {
    padding-top: 54px
  }
}

.careers-rows-purple {
  position: relative;
  overflow: hidden;
  color: #FCFCFC
}

@media (max-width: 599px) {
  .careers-rows-purple {
    padding-top: 23px;
    padding-bottom: 23px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .careers-rows-purple {
    padding-top: 52px;
    padding-bottom: 52px
  }
}

@media (min-width: 1200px) {
  .careers-rows-purple {
    padding-top: 100px;
    padding-bottom: 100px
  }
}

.careers-rows-purple .grad-blur {
  background-image: url("../images/grad-2.png");
  z-index: 10
}

@-moz-document url-prefix() {
  .careers-rows-purple .grad-blur {
    background-image: url("../images/grad-2-large.png")
  }
}

@supports (-ms-ime-align: auto) {
  .careers-rows-purple .grad-blur {
    background-image: url("../images/grad-2-large.png")
  }
}

.careers-rows-purple .wrapper {
  position: relative;
  z-index: 20
}

@media (max-width: 599px) {
  .careers-blocks {
    margin-bottom: 23px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .careers-blocks {
    margin-bottom: 52px
  }
}

@media (min-width: 1200px) {
  .careers-blocks {
    margin-bottom: 100px
  }
}

.careers-benefits-wrapper {
  background: #EFEFF1
}

@media (max-width: 599px) {
  .careers-benefits-wrapper {
    padding-top: 48px;
    padding-bottom: 49px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .careers-benefits-wrapper {
    padding-top: 47px;
    padding-bottom: 63px
  }
}

@media (min-width: 1200px) {
  .careers-benefits-wrapper {
    padding-top: 97px;
    padding-bottom: 107px
  }
}

@media (max-width: 599px) {
  .careers-benefits-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .careers-benefits-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }
}

@media (min-width: 1200px) {
  .careers-benefits-text {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px
  }
}

@media (max-width: 599px) {
  .careers-benefits-icons {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 11px
  }

  .careers-benefits-icons .icon {
    width: 50%
  }

  .careers-benefits-icons .icon svg {
    width: 145px;
    height: 145px
  }

  .careers-benefits-icons .icon p {
    margin: -25px 0 0 0
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .careers-benefits-icons {
    width: calc(100% - 40px);
    float: left;
    margin-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 25px
  }

  .careers-benefits-icons .icon {
    width: 33.33%
  }

  .careers-benefits-icons .icon svg {
    width: 175px;
    height: 175px
  }

  .careers-benefits-icons .icon p {
    margin: -6px 0 0 0
  }
}

@media (min-width: 1200px) {
  .careers-benefits-icons {
    width: calc(100% - 80px);
    float: left;
    margin-left: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 60px
  }

  .careers-benefits-icons .icon {
    width: 14.8%
  }

  .careers-benefits-icons .icon svg {
    width: 220px;
    height: 220px
  }

  .careers-benefits-icons .icon p {
    margin: -12px 0 0 0
  }
}

.careers-benefits-icons .icon {
  text-align: center
}

.careers-benefits-icons .icon svg {
  fill: rgba(34, 34, 34, 0.5)
}

.careers-benefits-icons .icon p {
  color: rgba(34, 34, 34, 0.75)
}

@media (max-width: 599px) {
  .careers-roles-index-list {
    padding-top: 35px
  }

  .careers-roles-index-list .news-single-related-title p {
    margin: 1.8em 0 1.25em 0
  }

  .careers-roles-index-list .news-single-related-items {
    margin-top: 43px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .careers-roles-index-list {
    padding-top: 45px
  }

  .careers-roles-index-list .news-single-related-title p {
    margin: 1.7em 0 1em 0
  }

  .careers-roles-index-list .news-single-related-items {
    margin-top: 61px
  }
}

@media (min-width: 1200px) {
  .careers-roles-index-list {
    padding-top: 118px
  }

  .careers-roles-index-list .news-single-related-title p {
    margin: 1.8em 0 0.45em 0
  }

  .careers-roles-index-list .news-single-related-items {
    margin-top: 75px
  }
}

.careers-roles-index-list .news-single-related-items {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease
}

.careers-roles-index-list .news-single-related-items.faded-out {
  opacity: 0
}

.careers-roles-index-list .news-single-related-items.faded-in {
  opacity: 1
}

.careers-roles-index-list .news-single-related-items .news-item.dontshow {
  margin-top: 0
}

.careers-roles-index-list .career-sector-filter-list .small-caps.active,
.careers-roles-index-list .career-sector-filter-list .active.small-caps-link,
.careers-roles-index-list .career-sector-filter-list .about-biz .nice-type a.active,
.about-biz .nice-type .careers-roles-index-list .career-sector-filter-list a.active {
  color: #00A2FF
}

@media (max-width: 599px) {
  .careers-roles-index-list .career-sector-filter-list {
    margin-top: 29px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .careers-roles-index-list .career-sector-filter-list {
    margin-top: 34px
  }
}

@media (min-width: 1200px) {
  .careers-roles-index-list .career-sector-filter-list {
    margin-top: 32px
  }
}

.careers-contact {
  background: #EFEFF1
}

@media (max-width: 599px) {
  .careers-contact {
    padding-top: 45px;
    padding-bottom: 52px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .careers-contact {
    padding-top: 69px;
    padding-bottom: 62px
  }
}

@media (min-width: 1200px) {
  .careers-contact {
    padding-top: 89px;
    padding-bottom: 110px
  }
}

@media (max-width: 599px) {
  .careers-contact-text {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .careers-contact-text {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px
  }
}

@media (min-width: 1200px) {
  .careers-contact-text {
    width: calc(50% - 60px);
    float: left;
    margin-left: 40px
  }
}

.news-items.vacancy-items {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.news-items.vacancy-items:before {
  display: none
}

@media (max-width: 1199px) {
  .news-items.vacancy-items .news-item {
    width: 100%
  }

  .news-items.vacancy-items .news-item:nth-child(1) {
    margin-top: 0
  }

  .news-items.vacancy-items .news-item.is-first-career:nth-child(1) {
    margin-top: 0
  }
}

@media (min-width: 1200px) {
  .news-items.vacancy-items .news-item {
    width: calc(50% - 20px)
  }

  .news-items.vacancy-items .news-item:nth-child(1),
  .news-items.vacancy-items .news-item:nth-child(2) {
    margin-top: 0
  }

  .news-items.vacancy-items .news-item.is-first-career {
    margin-top: 0
  }
}

@media (max-width: 599px) {
  .vacancy-single .news-single-content-wrapper .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .vacancy-single .news-single-content-wrapper .grid .vacancy-single-apply {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 78px;
    padding-bottom: 20px
  }

  .vacancy-single .news-single-content-wrapper .grid .news-single-content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .vacancy-single .news-single-content-wrapper .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .vacancy-single .news-single-content-wrapper .grid .vacancy-single-apply {
    left: calc(-25% - 15px + 20px);
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 74px
  }

  .vacancy-single .news-single-content-wrapper .grid .news-single-content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }
}

@media (min-width: 1200px) {
  .vacancy-single .news-single-content-wrapper .grid .vacancy-single-apply {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }
}

.vacancy-single-apply {
  margin: 0;
  padding: 0
}

@media (max-width: 599px) {
  .vacancy-single-apply {
    width: calc(100% - 24px);
    float: left;
    margin-left: 12px
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  .vacancy-single-apply {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px;
    margin-left: calc(25% - 25px + 40px)
  }
}

@media (min-width: 1200px) {
  .vacancy-single-apply {
    width: calc(41.66667% - 56.66667px);
    float: left;
    margin-left: 40px;
    margin-left: calc(8.33333% - 43.33333px + 80px)
  }
}

body.debug_mq:before {
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: 100;
  font-size: 12px;
  color: #fff;
  padding: 5px 8px 6px;
  line-height: 1;
  margin-left: 5px;
  font-family: "Menlo", "Courier"
}

@media (max-width: 599px) {
  body.debug_mq:before {
    content:"@include respond('to', 'small') {}";
    background: #fc0
  }
}

@media (min-width: 600px) and (max-width: 1199px) {
  body.debug_mq:before {
    content:"@include respond('fromto', 'small', 'medium') {}";
    background: #f00
  }
}

@media (min-width: 1200px) {
  body.debug_mq:before {
    content:"@include respond('from', 'medium') {}";
    background: #f06
  }
}

.pages-turn {
  width: 100%;
  height: auto;
  padding-top: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/*分页*/
.pages-turn span {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 31px;
  text-align: center;
  font-family: 'Arial';
  background-color: #23afff;
  line-height: 44px;
  border-radius: 44px;
  margin: 10px;
  color: #ffffff;
}

.pages-turn a {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 31px;
  color: #000000;
  text-align: center;
  font-family: 'Arial';
  background-color: #fff;
  line-height: 44px;
  margin: 10px;
  border-radius: 44px;
}

.pages-turn a.on,
.pages-turn a:hover {
  color: #fff;
  background-color: #23afff;
}

.news .list li {
  /*# sourceMappingURL=app.min.css.map */